diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-09-13 15:14:41 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-09-13 15:14:41 +0000 |
commit | c21c28403985dbe438519f533dd450a6893a44f9 (patch) | |
tree | 156ebe284adb42a05f7cbbca398e25cae488af88 /cpp/src/IceSSL/ConfigParser.cpp | |
parent | Change AddUserToAllowCategories to be: (diff) | |
download | ice-c21c28403985dbe438519f533dd450a6893a44f9.tar.bz2 ice-c21c28403985dbe438519f533dd450a6893a44f9.tar.xz ice-c21c28403985dbe438519f533dd450a6893a44f9.zip |
Now logging uses LoggerUtil.
Diffstat (limited to 'cpp/src/IceSSL/ConfigParser.cpp')
-rw-r--r-- | cpp/src/IceSSL/ConfigParser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/ConfigParser.cpp b/cpp/src/IceSSL/ConfigParser.cpp index 59057123aa7..33d999274bb 100644 --- a/cpp/src/IceSSL/ConfigParser.cpp +++ b/cpp/src/IceSSL/ConfigParser.cpp @@ -78,7 +78,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c init exception: " << toString(toCatch.getMessage()); configEx.message = s.str(); @@ -148,7 +148,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c parsing error: " << toString(e.getMessage()); configEx.message = s.str(); @@ -160,7 +160,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; @@ -224,7 +224,7 @@ IceSSL::ConfigParser::loadClientConfig(GeneralConfig& general, ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while loading client configuration:" << endl; + s << "while loading client configuration:\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; @@ -262,7 +262,7 @@ IceSSL::ConfigParser::loadServerConfig(GeneralConfig& general, ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while loading server configuration:" << endl; + s << "while loading server configuration:\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; |