Skip to content

Commit 3e6cbd9

Browse files
committed
Merge branch 'main' of https://github.com/HBClab/boost-act
adding changes to logging so it doesn't blow up the emails
2 parents b66995c + e632a10 commit 3e6cbd9

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)