We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa95657 commit 474e47bCopy full SHA for 474e47b
.gitignore
@@ -172,3 +172,5 @@ cython_debug/
172
173
# PyPI configuration file
174
.pypirc
175
+
176
+vllm_server.log
log_config.json
@@ -20,21 +20,27 @@
20
},
21
"file": {
22
"class": "logging.FileHandler",
23
- "formatter": "standard",
+ "formatter": "vllm_default",
24
"level": "INFO",
25
"filename": "vllm_server.log",
26
"mode": "a"
27
}
28
29
"root": {
30
- "handlers": ["console", "file"],
+ "handlers": [
31
+ "console",
32
+ "file"
33
+ ],
34
"level": "INFO"
35
36
"loggers": {
37
"vllm": {
38
39
40
41
42
43
"propagate": false
44
45
-}
46
+}
0 commit comments