X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=blobdiff_plain;f=dali%2Finternal%2Fsystem%2Fcommon%2Fsingleton-service-impl.cpp;h=afc5740a0ab577252a361980710fe1c31e2b14c9;hp=cb7830b30a43eaed95df924cf5b11f6321d7d2c3;hb=24a4fa7268f45ec3630ca709370b5a60aac77441;hpb=f62a8e12ffe66e1cd6119a372604ed150d97ee51 diff --git a/dali/internal/system/common/singleton-service-impl.cpp b/dali/internal/system/common/singleton-service-impl.cpp old mode 100755 new mode 100644 index cb7830b..afc5740 --- a/dali/internal/system/common/singleton-service-impl.cpp +++ b/dali/internal/system/common/singleton-service-impl.cpp @@ -33,11 +33,12 @@ Debug::Filter* gSingletonServiceLogFilter = Debug::Filter::New( Debug::NoLogging #define DALI_LOG_SINGLETON_SERVICE_DIRECT(level, message) \ if(gSingletonServiceLogFilter && gSingletonServiceLogFilter->IsEnabledFor(level)) { std::string string(message); Dali::TizenPlatform::LogMessage( Debug::DebugInfo, string ); } -#define DALI_LOG_SINGLETON_SERVICE(level, format, ...) DALI_LOG_INFO(gSingletonServiceLogFilter, level, format, ## __VA_ARGS__ ) +#define DALI_LOG_SINGLETON_SERVICE(level, format, args...) DALI_LOG_INFO(gSingletonServiceLogFilter, level, format, ## args ) + #else #define DALI_LOG_SINGLETON_SERVICE_DIRECT(level, message) -#define DALI_LOG_SINGLETON_SERVICE(level, format, ...) +#define DALI_LOG_SINGLETON_SERVICE(level, format, args...) #endif