Skip to content

Commit

Permalink
[ref] code comment changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklix committed Dec 17, 2021
1 parent a42c7d5 commit 48f133f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/python/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

log_file_path = os.path.join(config_directory_path, "marmara-connector.log") # configure log file directory
logging.getLogger(__name__)
stream_handler = logging.StreamHandler() # create stream handler and set level to debug
stream_handler.setLevel(logging.INFO) # set stream handler level to debug
stream_handler = logging.StreamHandler() # create stream handler and set level to info
stream_handler.setLevel(logging.INFO) # set stream handler level to info
logging.basicConfig(level=logging.INFO,
format='%(asctime)s %(levelname)s %(name)s:%(module)s %(funcName)s:%(lineno)s %(message)s',
handlers=[logging.FileHandler(filename=log_file_path, mode='a+'), stream_handler])
Expand Down

0 comments on commit 48f133f

Please sign in to comment.