Skip to content

Commit 263eaa0

Browse files
committed
Fixing build failure on Trace
1 parent 726496a commit 263eaa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

process_tracker/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
data_store = DataStore()
1111
logger = logging.getLogger('Process Tracker')
12-
logger.setLevel(os.environ.get('log_level', 'INFO'))
12+
logger.setLevel(os.environ.get('log_level', 'DEBUG'))
1313

1414

1515
@click.group()

process_tracker/data_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self):
2828
Need to initialize the data store connection when starting to access the data store.
2929
"""
3030
self.logger = logging.getLogger(__name__)
31-
self.logger.setLevel(os.environ.get('log_level', 'INFO'))
31+
self.logger.setLevel(os.environ.get('log_level', 'DEBUG'))
3232

3333
data_store = self.verify_and_connect_to_data_store()
3434
self.session = data_store['session']

0 commit comments

Comments
 (0)