diff options
author | Marc Laukien <marc@zeroc.com> | 2002-02-12 17:29:14 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-02-12 17:29:14 +0000 |
commit | 22e5451151ed6d80bdb631e3cb4d12877a251a91 (patch) | |
tree | 405b50b7f08a021192fc4777b224fb8cc97ec27e /cpp/src/Ice/LoggerUtil.cpp | |
parent | Fix some TODO's in IceUtil. IceStorm now uses the new Logger utils. (diff) | |
download | ice-22e5451151ed6d80bdb631e3cb4d12877a251a91.tar.bz2 ice-22e5451151ed6d80bdb631e3cb4d12877a251a91.tar.xz ice-22e5451151ed6d80bdb631e3cb4d12877a251a91.zip |
fix
Diffstat (limited to 'cpp/src/Ice/LoggerUtil.cpp')
-rw-r--r-- | cpp/src/Ice/LoggerUtil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/LoggerUtil.cpp b/cpp/src/Ice/LoggerUtil.cpp index fd3fdd8085d..901c0c5a81d 100644 --- a/cpp/src/Ice/LoggerUtil.cpp +++ b/cpp/src/Ice/LoggerUtil.cpp @@ -33,7 +33,7 @@ Ice::Warning::flush() { _logger->warning(s); } - _str.clear(); + _str.str(""); } ostringstream& @@ -67,7 +67,7 @@ Ice::Error::flush() { _logger->error(s); } - _str.clear(); + _str.str(""); } ostringstream& @@ -102,7 +102,7 @@ Ice::Trace::flush() { _logger->trace(s, _category); } - _str.clear(); + _str.str(""); } ostringstream& |