Skip to content

Commit

Permalink
updating logger format
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen10 committed Aug 12, 2024
1 parent 439143d commit 84be33b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kspdg/utils/loggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def create_logger(
c_handler.setLevel(stream_log_level)

# Create formatters and add it to handlers
c_format = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - [%(threadName)s] - %(message)s')
c_format = logging.Formatter('%(asctime)s - %(levelname)s - %(name)s[%(process)d-%(threadName)s] - %(message)s')
c_handler.setFormatter(c_format)

# Add handlers to the logger
Expand Down

0 comments on commit 84be33b

Please sign in to comment.