summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/GeneralConfig.h
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-09-13 15:14:41 +0000
committerAnthony Neal <aneal@zeroc.com>2002-09-13 15:14:41 +0000
commitc21c28403985dbe438519f533dd450a6893a44f9 (patch)
tree156ebe284adb42a05f7cbbca398e25cae488af88 /cpp/src/IceSSL/GeneralConfig.h
parentChange AddUserToAllowCategories to be: (diff)
downloadice-c21c28403985dbe438519f533dd450a6893a44f9.tar.bz2
ice-c21c28403985dbe438519f533dd450a6893a44f9.tar.xz
ice-c21c28403985dbe438519f533dd450a6893a44f9.zip
Now logging uses LoggerUtil.
Diffstat (limited to 'cpp/src/IceSSL/GeneralConfig.h')
-rw-r--r--cpp/src/IceSSL/GeneralConfig.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/GeneralConfig.h b/cpp/src/IceSSL/GeneralConfig.h
index 3b9850202cd..2da3e2e14c2 100644
--- a/cpp/src/IceSSL/GeneralConfig.h
+++ b/cpp/src/IceSSL/GeneralConfig.h
@@ -51,12 +51,12 @@ protected:
template<class Stream> inline
Stream& operator << (Stream& target, const GeneralConfig& generalConfig)
{
- target << "Protocol: " << generalConfig.getProtocol() << std::endl;
- target << "Verify Mode: " << generalConfig.getVerifyMode() << std::endl;
- target << "Verify Depth: " << generalConfig.getVerifyDepth() << std::endl;
- target << "Context: " << generalConfig.getContext() << std::endl;
- target << "Cipher List: " << generalConfig.getCipherList() << std::endl;
- target << "Random Bytes: " << generalConfig.getRandomBytesFiles() << std::endl;
+ target << "Protocol: " << generalConfig.getProtocol() << "\n";
+ target << "Verify Mode: " << generalConfig.getVerifyMode() << "\n";
+ target << "Verify Depth: " << generalConfig.getVerifyDepth() << "\n";
+ target << "Context: " << generalConfig.getContext() << "\n";
+ target << "Cipher List: " << generalConfig.getCipherList() << "\n";
+ target << "Random Bytes: " << generalConfig.getRandomBytesFiles() << "\n";
return target;
}