Skip to content

Commit bc2438d

Browse files
committed
pythoncile is WARNING only
1 parent d3a4664 commit bc2438d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SublimeCodeIntel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def emit(self, record):
122122
codeintel_log.handlers = [codeintel_hdlr]
123123
log.handlers = [stderr_hdlr]
124124
codeintel_log.setLevel(logging.INFO) # INFO
125-
logging.getLogger("codeintel.db").setLevel(logging.WARNING) # WARNING
126-
125+
for logger in ('codeintel.db', 'codeintel.pythoncile'):
126+
logging.getLogger(logger).setLevel(logging.WARNING) # WARNING
127127
for logger in ('css', 'django', 'html', 'html5', 'javascript', 'mason', 'nodejs',
128128
'perl', 'php', 'python', 'python3', 'rhtml', 'ruby', 'smarty',
129129
'tcl', 'templatetoolkit', 'xbl', 'xml', 'xslt', 'xul'):

0 commit comments

Comments
 (0)