Closed intel352 closed 6 years ago
https://github.com/revel/cmd/blob/97ec1422620f1a83cd13738708a109fe092364ca/revel/skeleton/conf/app.conf.template#L200-L202
%(app.name) should be %(app.name)s
%(app.name)
%(app.name)s
Because of the missing s, the resulting log names (when printed from cli):
s
jlangevin$ ls log/ %(app.name)-critical.json %(app.name)-error.json %(app.name)-warn.json my-app-name-requests.json
Note the requests log is the only one that has the correct format in the generated config.
Thanks for pointing this out
https://github.com/revel/cmd/blob/97ec1422620f1a83cd13738708a109fe092364ca/revel/skeleton/conf/app.conf.template#L200-L202
%(app.name)
should be%(app.name)s
Because of the missing
s
, the resulting log names (when printed from cli):Note the requests log is the only one that has the correct format in the generated config.