Merge "Fix unittests" into tizen
authorJunghoon Park <jh9216.park@samsung.com>
Tue, 11 Aug 2020 02:07:08 +0000 (02:07 +0000)
committerGerrit Code Review <gerrit@review>
Tue, 11 Aug 2020 02:07:08 +0000 (02:07 +0000)
src/theme/utils/logging.h

index 3c3cd66..72ac5f1 100644 (file)
@@ -72,9 +72,6 @@ class LogCatcher {
   void operator&(const StringStream<char>& str) const {
     dlog_print(LogLevelToPriority(level_), tag_.c_str(), "%s",
         Escape(str.str()).c_str());
-
-    if (level_ == LogLevel::LOG_ERROR)
-      std::cout << str.str() << std::endl;
   }
 
  private: