Skip to content
Snippets Groups Projects
Commit 9dde7903 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Merge branch 'TMSS-3182' into 'master'

TMSS-3182

Closes TMSS-3182

See merge request !13
parents 7f200ae0 8cb87fef
No related branches found
No related tags found
1 merge request!13TMSS-3182
Pipeline #112433 passed with warnings
Pipeline: PyCommon

#112434

    ......@@ -299,3 +299,10 @@ def without_keys(org_dict: dict, keys: typing.Collection) -> dict:
    def noop():
    '''classic noop (no-operation) function that does nothing.'''
    pass
    def configure_logging_and_timezone(debug_log_level: bool=False):
    '''common method to have the same logging and timezone'''
    # make sure we run in UTC timezone
    os.environ['TZ'] = 'UTC'
    logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.DEBUG if debug_log_level else logging.INFO)
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment