Skip to content

Commit e632a10

Browse files
committed
changed logging to info for easier log reading
1 parent e0520a6 commit e632a10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import logging
88

99
logging.basicConfig(
10-
level=logging.DEBUG, # <-- this is key
10+
level=logging.INFO, # <-- this is key
1111
format='[%(levelname)s] %(message)s'
1212
)
1313
logger = logging.getLogger() # root logger

code/utils/group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from utils.pipe import Pipe
66

77
# Set up logging
8-
logging.basicConfig(level=logging.DEBUG)
8+
logging.basicConfig(level=logging.INFO)
99
logger = logging.getLogger(__name__)
1010

1111

0 commit comments

Comments
 (0)