diff --git a/app/nutcase.py b/app/nutcase.py index d61ac96..1485b5f 100755 --- a/app/nutcase.py +++ b/app/nutcase.py @@ -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()