Skip to content

Commit

Permalink
Default log level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurMitchell42 committed Dec 16, 2023
1 parent f374b10 commit 5d89c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/nutcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Set up logging objects and logging to a file and the console
#==================================================================================================
def Configure_Log(log):
try: log.setLevel( os.environ.get('LOG_LEVEL', "DEBUG").upper() )
try: log.setLevel( os.environ.get('LOG_LEVEL', "INFO").upper() )
except Exception: log.setLevel( logging.DEBUG )

Log_Console_Handler = logging.StreamHandler()
Expand Down

0 comments on commit 5d89c9f

Please sign in to comment.