Akoda35 commited on
Commit
2e489fc
·
verified ·
1 Parent(s): 95fed12

Create utils/logger.py

Browse files
Files changed (1) hide show
  1. utils/logger.py +8 -0
utils/logger.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+
3
+ logging.basicConfig(
4
+ level=logging.INFO,
5
+ format="%(asctime)s - %(levelname)s - %(message)s"
6
+ )
7
+
8
+ logger = logging.getLogger("PyRunner")