diff options
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& |