Closed pama closed 2 years ago
https://roda.jeremyevans.net/rdoc/classes/Roda/RodaPlugins/CommonLogger.html
The issue is in this particular line:
Logs to $stderr instead of env if explicit logger not passed
It should be:
Logs to $stderr instead of env['rack.errors'] if explicit logger not passed
I ran rdoc on that particular file, and I could not reproduce the issue.
Actually, I was wrong and I can reproduce the issue. The markup needs to be escaped: \env['rack.errors']
\env['rack.errors']
Thanks for the heads up! I'll fix this shortly.
https://roda.jeremyevans.net/rdoc/classes/Roda/RodaPlugins/CommonLogger.html
The issue is in this particular line:
It should be:
I ran rdoc on that particular file, and I could not reproduce the issue.