Skip to content

Commit 2991f1b

Browse files
committed
Removed debug output
1 parent c01c05f commit 2991f1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.vim/.ycm_extra_conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ def __init__( self, cmd, file ):
121121
def Settings( **kwargs ):
122122
filename = kwargs["filename"]
123123
cc=ccdb.get(filename,None)
124-
log(f"Settings({kwargs=})")
124+
# log(f"Settings({kwargs=})")
125125

126126
# XXX Figure out if we are in a gcc or IAR build case and only in the gcc do this
127127
if kwargs.get("language") == 'cfamily' and False:
128128
DIR_OF_THIS_SCRIPT = os.path.abspath( os.path.dirname( __file__ ) )
129129
cmake_commands = ccommands
130130
# cmake_commands = os.path.join( DIR_OF_THIS_SCRIPT, 'build', 'compile_commands.json')
131-
log(f"{cmake_commands=}")
131+
# log(f"{cmake_commands=}")
132132
if os.path.exists( cmake_commands ):
133133
return {
134134
'ls': {
@@ -168,7 +168,7 @@ def Settings( **kwargs ):
168168
if( allc.file.endswith(".cpp") or allc.file.endswith(".cxx") ):
169169
cc = allc
170170
break
171-
log(f"{cc.flags=}")
171+
# log(f"{cc.flags=}")
172172
return { "flags" : cc.flags }
173173

174174
return {}

0 commit comments

Comments
 (0)