]> granicus.if.org Git - icinga2/commitdiff
Make bug message somewhat more useful.
authorGunnar Beutner <gunnar.beutner@netways.de>
Thu, 10 Oct 2013 12:29:23 +0000 (14:29 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Thu, 10 Oct 2013 12:29:23 +0000 (14:29 +0200)
lib/base/application.cpp

index c0687ce4c03b9002cdc6d9b7579388745f58bc73..16ac7ba04eb23a5c1935c311f6e3f3b9581d2510 100644 (file)
@@ -318,8 +318,9 @@ bool Application::IsDebugging(void)
 void Application::DisplayBugMessage(void)
 {
        std::cerr << "***" << std::endl
-                 << "*** This would indicate a bug in Icinga 2. Please submit a bug report at https://dev.icinga.org/ and include" << std::endl
-                 << "*** this stack trace as well as any other information that might be useful in order to reproduce this problem." << std::endl
+                 << "*** This would indicate a runtime problem or configuration error. If you believe this is a bug in Icinga 2" << std::endl
+                 << "*** please submit a bug report at https://dev.icinga.org/ and include this stack trace as well as any other" << std::endl
+                 << "*** information that might be useful in order to reproduce this problem." << std::endl
                  << "***" << std::endl
                  << std::endl;
 }