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 494e98b commit 34be02aCopy full SHA for 34be02a
pylsp/__main__.py
@@ -5,6 +5,7 @@
5
import logging
6
import logging.config
7
import sys
8
+import time
9
10
try:
11
import ujson as json
@@ -14,7 +15,8 @@
14
15
from .python_lsp import (PythonLSPServer, start_io_lang_server,
16
start_tcp_lang_server)
17
-LOG_FORMAT = "%(asctime)s UTC - %(levelname)s - %(name)s - %(message)s"
18
+LOG_FORMAT = "%(asctime)s {0} - %(levelname)s - %(name)s - %(message)s".format(
19
+ time.localtime().tm_zone)
20
21
22
def add_arguments(parser):
0 commit comments