summaryrefslogtreecommitdiff
path: root/lib/web/statusRouter.js
diff options
context:
space:
mode:
authorSheogorath2019-06-08 20:51:24 +0200
committerSheogorath2019-06-08 21:27:29 +0200
commitb5fc6db75db61d9765da38e0f085dd737380f9f4 (patch)
treed221b850be9f961f357b7592636cd35868675383 /lib/web/statusRouter.js
parent6462968e84e8d92292dd23764a9e558d7800147d (diff)
Rework debug logging
We have various places with overly simple if statements that could be handled by our logging library. Also a lot of those logs are not marked as debug logs but as info logs, which can cause confusion during debugging. This patch removed unneeded if clauses around debug logging statements, reworks debug log messages towards ECMA templates and add some new logging statements which might be helpful in order to debug things like image uploads. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/web/statusRouter.js')
-rw-r--r--lib/web/statusRouter.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/web/statusRouter.js b/lib/web/statusRouter.js
index 6f797f84..da69e62c 100644
--- a/lib/web/statusRouter.js
+++ b/lib/web/statusRouter.js
@@ -68,9 +68,7 @@ statusRouter.post('/temp', urlencodedParser, function (req, res) {
if (!data) {
response.errorForbidden(res)
} else {
- if (config.debug) {
- logger.info('SERVER received temp from [' + host + ']: ' + req.body.data)
- }
+ logger.debug(`SERVER received temp from [${host}]: ${req.body.data}`)
models.Temp.create({
data: data
}).then(function (temp) {