Skip to content

Commit 498b0a1

Browse files
committed
undo log config changes made for dev & accidentally committed
1 parent 7be868e commit 498b0a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

typescript/libs/global_vars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_tsc_path():
4747

4848
# set logging levels
4949
LOG_FILE_LEVEL = logging.WARN
50-
LOG_CONSOLE_LEVEL = logging.DEBUG # WARN
50+
LOG_CONSOLE_LEVEL = logging.WARN
5151

5252
NON_BLANK_LINE_PATTERN = re.compile("[\S]+")
5353
VALID_COMPLETION_ID_PATTERN = re.compile("[a-zA-Z_$\.][\w$\.]*\Z")

typescript/libs/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
filePath = path.join(_pluginRoot, 'TS.log')
1818

1919
log = logging.getLogger('TS')
20-
log.setLevel(logging.DEBUG)
20+
log.setLevel(logging.WARN)
2121

2222
_logFormat = logging.Formatter('%(asctime)s: %(thread)d: %(levelname)s: %(message)s')
2323

0 commit comments

Comments
 (0)