HaikuDepot: Instructions on Logs

Some error messages make mention of application logs
and users don't know how to view the logs.  This
change adds some instructions about that to the user
guide and also directs the user to the user guide in
any error messages that mention the logs.

Change-Id: Ib98737abe853586c58a1c1df7befb86aa1c04491
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2285
Reviewed-by: humdinger <[email protected]>
This commit is contained in:
Andrew Lindesay
2020-02-29 10:50:04 +00:00
parent adcf5b05a8
commit b21c94474e
4 changed files with 9 additions and 3 deletions
@@ -78,4 +78,7 @@ enum UserUsageConditionsSelectionMode {
#define STR_MDASH "\xE2\x80\x94"
#define ALERT_MSG_LOGS_USER_GUIDE "Information about how to view the logs is " \
"available in the HaikuDepot section of the user guide."
#endif // HAIKU_DEPOT_CONSTANTS_H
+2 -1
View File
@@ -972,7 +972,8 @@ MainWindow::_BulkLoadProcessCoordinatorFinished(
"that may cause data to be outdated or missing from the "
"application's display. Additional details regarding this "
"problem may be able to be obtained from the application "
"logs."));
"logs."
ALERT_MSG_LOGS_USER_GUIDE));
}
BMessenger messenger(this);
messenger.SendMessage(MSG_BULK_LOAD_DONE);
+2 -1
View File
@@ -785,7 +785,8 @@ UserLoginWindow::_CreateAccountUserUsageConditionsSetupThread(
B_TRANSLATE("Usage conditions download problem"),
B_TRANSLATE("An error has arisen downloading the usage "
"conditions required to create a new user. Check the log for "
"details and try again."));
"details and try again. "
ALERT_MSG_LOGS_USER_GUIDE));
}
return result;
@@ -391,7 +391,8 @@ UserUsageConditionsWindow::_NotifyFetchProblem()
AppUtils::NotifySimpleError(
B_TRANSLATE("Usage conditions download problem"),
B_TRANSLATE("An error has arisen downloading the usage "
"conditions. Check the log for details and try again."));
"conditions. Check the log for details and try again. "
ALERT_MSG_LOGS_USER_GUIDE));
}