Fix incorrect log message

This commit is contained in:
Gunnar Beutner 2014-10-13 14:00:28 +02:00
parent fab9d7eedf
commit 43bb5127ac
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ int Main(void)
} catch (const std::exception& ex) {
std::ostringstream msgbuf;
msgbuf << "Error while parsing command-line options: " << ex.what();
Log(LogCritical, "cli_daemon", msgbuf.str());
Log(LogCritical, "icinga-app", msgbuf.str());
return EXIT_FAILURE;
}