Skip to content

Commit

Permalink
debugging completion flags
Browse files Browse the repository at this point in the history
  • Loading branch information
niosus committed May 7, 2016
1 parent 12f4646 commit 7d05f6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/completion/bin_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def complete(self, view, cursor_pos, show_errors):
std=self.std_flag,
complete_at=complete_at_str,
includes=" ".join(self.flags_dict[view.id()]))
log.debug(" clang command: \n%s", complete_cmd)
log.warning(" clang command: \n%s", complete_cmd)
# execute clang code completion
start = time.time()
log.debug(" started code complete for view %s", view.id())
Expand Down
2 changes: 1 addition & 1 deletion plugin/completion/lib_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def init(self, view, includes, settings, project_folder):
clang_complete_file)
clang_flags += flags

log.debug(" clang flags are: %s", clang_flags)
log.warning(" clang flags are: %s", clang_flags)
try:
TU = Completer.tu_module
start = time.time()
Expand Down

0 comments on commit 7d05f6f

Please sign in to comment.