Commit a33cb13142da9fd277a67f6e26d35b01832a7bf4
1 parent
5e3b926ab2
Exists in
master
and in
1 other branch
WEBADMIN: fix acess_log
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
lib/webadmin/index.js
... | ... | @@ -23,7 +23,7 @@ const accessLogStream = rfs.createStream( |
23 | 23 | (time, index) => { |
24 | 24 | const ts = time ? `.${moment(time).format('YYYY-MM-DD')}` : ''; |
25 | 25 | const idx = index ? `.${index}` : ''; |
26 | - return `apiserver.access_log${ts}${idx}`; | |
26 | + return `webadmin.access_log${ts}${idx}`; | |
27 | 27 | }, |
28 | 28 | { |
29 | 29 | interval: '1d', |