Spaces:
Sleeping
Sleeping
kadabengaran
commited on
Commit
•
ce26289
1
Parent(s):
1d721d6
Create log_conf.yaml
Browse files- log_conf.yaml +23 -0
log_conf.yaml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: 1
|
2 |
+
disable_existing_loggers: False
|
3 |
+
formatters:
|
4 |
+
default:
|
5 |
+
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
6 |
+
handlers:
|
7 |
+
console:
|
8 |
+
class: logging.StreamHandler
|
9 |
+
formatter: default
|
10 |
+
stream: ext://sys.stdout
|
11 |
+
loggers:
|
12 |
+
uvicorn:
|
13 |
+
handlers: [console]
|
14 |
+
level: INFO
|
15 |
+
uvicorn.error:
|
16 |
+
handlers: [console]
|
17 |
+
level: INFO
|
18 |
+
uvicorn.access:
|
19 |
+
handlers: [console]
|
20 |
+
level: INFO
|
21 |
+
root:
|
22 |
+
handlers: [console]
|
23 |
+
level: INFO
|