From 86959bdddcfeadb8ad39879ae0a10c3213256eda Mon Sep 17 00:00:00 2001 From: "jonghyun.ho" Date: Tue, 13 May 2014 16:14:49 +0900 Subject: [PATCH] Lower debug level of indicator logs --- adaptors/tizen/internal/common/indicator-impl.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/adaptors/tizen/internal/common/indicator-impl.cpp b/adaptors/tizen/internal/common/indicator-impl.cpp index 37ff5c5..f360303 100644 --- a/adaptors/tizen/internal/common/indicator-impl.cpp +++ b/adaptors/tizen/internal/common/indicator-impl.cpp @@ -978,31 +978,31 @@ void Indicator::DataReceived( void* event ) switch( epcEvent->minor ) { case OP_UPDATE: - DALI_LOG_ERROR( "Indicator client received: OP_UPDATE\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_UPDATE\n" ); break; case OP_UPDATE_DONE: - DALI_LOG_ERROR( "Indicator client received: OP_UPDATE_DONE\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_UPDATE_DONE\n" ); UpdateImageData(); break; case OP_LOCK_FILE: - DALI_LOG_ERROR( "Indicator client received: OP_LOCK_FILE\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_LOCK_FILE\n" ); NewLockFile( epcEvent ); break; case OP_SHM_REF: - DALI_LOG_ERROR( "Indicator client received: OP_SHM_REF\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_SHM_REF\n" ); LoadSharedImage( epcEvent ); break; case OP_PIXMAP_REF: - DALI_LOG_ERROR( "Indicator client received: OP_PIXMAP_REF\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_PIXMAP_REF\n" ); LoadPixmapImage( epcEvent ); break; case OP_RESIZE: - DALI_LOG_ERROR( "Indicator client received: OP_RESIZE\n" ); + DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "Indicator client received: OP_RESIZE\n" ); if( (epcEvent->data) && (epcEvent->size >= (int)sizeof(IpcDataResize)) ) { -- 2.7.4