summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/web/note/util.js4
1 files changed, 2 insertions, 2 deletions
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)
})
}