From dcea082286ce5c41e50f70820c065c677a176fc7 Mon Sep 17 00:00:00 2001 From: Erik Michelson Date: Mon, 29 Mar 2021 23:07:11 +0200 Subject: Add better logging messages Signed-off-by: Erik Michelson --- lib/web/note/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/web/note/util.js b/lib/web/note/util.js index dbca5d8e..5df1e820 100644 --- a/lib/web/note/util.js +++ b/lib/web/note/util.js @@ -70,7 +70,7 @@ exports.newNote = async function (req, res, body) { return errors.errorConflict(res) } } catch (err) { - logger.error(err) + logger.error('Error while checking for possible duplicate: ' + err) return errors.errorInternalError(res) } } @@ -82,7 +82,7 @@ exports.newNote = async function (req, res, body) { }).then(function (note) { return res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id))) }).catch(function (err) { - logger.error(err) + logger.error('Note could not be created: ' + err) return errors.errorInternalError(res) }) } -- cgit v1.2.3