We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be868e commit 498b0a1Copy full SHA for 498b0a1
typescript/libs/global_vars.py
@@ -47,7 +47,7 @@ def get_tsc_path():
47
48
# set logging levels
49
LOG_FILE_LEVEL = logging.WARN
50
-LOG_CONSOLE_LEVEL = logging.DEBUG # WARN
+LOG_CONSOLE_LEVEL = logging.WARN
51
52
NON_BLANK_LINE_PATTERN = re.compile("[\S]+")
53
VALID_COMPLETION_ID_PATTERN = re.compile("[a-zA-Z_$\.][\w$\.]*\Z")
typescript/libs/logger.py
@@ -17,7 +17,7 @@
17
filePath = path.join(_pluginRoot, 'TS.log')
18
19
log = logging.getLogger('TS')
20
-log.setLevel(logging.DEBUG)
+log.setLevel(logging.WARN)
21
22
_logFormat = logging.Formatter('%(asctime)s: %(thread)d: %(levelname)s: %(message)s')
23
0 commit comments