Skip to content

Commit

Permalink
Corrected log configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Smirnov-Exactpro committed Jul 5, 2024
1 parent 823493d commit 85ff956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ formatter=formatter
args=(sys.stdout,)

[formatter_formatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
format=%(asctime)s.%(msecs)03d - %(name)s - %(levelname)s - %(message)s
datefmt=%Y-%m-%d %H:%M:%S
2 changes: 1 addition & 1 deletion log_configuratior.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def configureLogging():
'version': 1,
'formatters': {
'default': {
'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s',
'format': '%(asctime)s.%(msecs)03d - %(name)s - %(levelname)s - %(message)s',
'datefmt': '%Y-%m-%d %H:%M:%S'
},
},
Expand Down

0 comments on commit 85ff956

Please sign in to comment.