Remove stdout log 94/240494/2
authorInkyun Kil <inkyun.kil@samsung.com>
Fri, 7 Aug 2020 01:41:17 +0000 (10:41 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Mon, 10 Aug 2020 07:36:46 +0000 (07:36 +0000)
Change-Id: I7ced935d6d0cf4d07b2c494237d4ce36af48547f
Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
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: