mdasad3617 commited on
Commit
0f90d5a
·
verified ·
1 Parent(s): 29acb53

Delete logging_utils.py

Browse files
Files changed (1) hide show
  1. logging_utils.py +0 -13
logging_utils.py DELETED
@@ -1,13 +0,0 @@
1
- # Utilities for logging.
2
-
3
- import logging
4
-
5
- def setup_logging(log_file='logs/app.log'):
6
- logging.basicConfig(
7
- level=logging.INFO,
8
- format='%(asctime)s - %(levelname)s - %(message)s',
9
- handlers=[
10
- logging.FileHandler(log_file),
11
- logging.StreamHandler()
12
- ]
13
- )