From: scantor Date: Thu, 17 Nov 2011 14:59:12 +0000 (+0000) Subject: Adjust logging error message. X-Git-Tag: 1.5.1~70 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fxmltooling.git;a=commitdiff_plain;h=eed15a9ebb3a860d6e35c88c4e1bc04144e2d8ee Adjust logging error message. git-svn-id: https://svn.shibboleth.net/cpp-xmltooling/branches/REL_1@926 de75baf8-a10c-0410-a50a-987c0e22f00f --- diff --git a/xmltooling/XMLToolingConfig.cpp b/xmltooling/XMLToolingConfig.cpp index fd6ce97..f67bb14 100644 --- a/xmltooling/XMLToolingConfig.cpp +++ b/xmltooling/XMLToolingConfig.cpp @@ -359,7 +359,7 @@ bool XMLToolingInternalConfig::log_config(const char* config) #endif } catch (const ConfigureFailure& e) { - string msg = string("failed to configure logging: ") + e.what(); + string msg = string("error in file permissions or logging configuration: ") + e.what(); Category::getInstance(XMLTOOLING_LOGCAT".Logging").crit(msg); #ifdef WIN32 LogEvent(nullptr, EVENTLOG_ERROR_TYPE, 2100, nullptr, msg.c_str());