0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Error message updates

no issue

- couple of tweaks to the messaging of non-fatal errors that can be output when running Ghost
This commit is contained in:
Hannah Wolfe 2014-01-12 21:49:24 +00:00
parent 9f0dea0559
commit c8917cab4d
2 changed files with 6 additions and 2 deletions

View file

@ -153,7 +153,11 @@ adminControllers = {
'<a href="https://ghost.org">https://ghost.org</a></p>'
};
mailer.send(message).otherwise(function (error) {
errors.logError('Unable to send welcome email. Reason: \n' + error.message);
errors.logError(
error.message,
"Unable to send welcome email, your blog will continue to function.",
"Please see http://docs.ghost.org/mail/ for instructions on configuring email."
);
});
req.session.regenerate(function (err) {

View file

@ -40,7 +40,7 @@ function updateCheckError(error) {
errors.logError(
error,
"Checking for updates failed, your blog will continue to function.",
"If you get this error repeatedly, please seek help from http://ghost.org/forum."
"If you get this error repeatedly, please seek help from https://ghost.org/forum."
);
}