Remove unnecessary executable file permission
[platform/core/multimedia/media-server.git] / src / common / include / media-common-dbg.h
old mode 100755 (executable)
new mode 100644 (file)
index df965d3..e79d863
                SECURE_LOGD(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
                } } while (false)
 
+#define MS_DBG_SINFO(fmt, arg...) do { if (true) { \
+               SECURE_LOGI(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               } } while (false)
+
+#define MS_DBG_SWARN(fmt, arg...) do { if (true) { \
+               SECURE_LOGI(FONT_COLOR_CYAN""fmt""FONT_COLOR_RESET, ##arg); \
+               } } while (false)
+
+#define MS_DBG_SERR(fmt, arg...) do { if (true) { \
+                       SECURE_LOGE(FONT_COLOR_RED""fmt""FONT_COLOR_RESET, ##arg); \
+                       } } while (false)
+
 #define MS_DBG(fmt, arg...) do { if (true) { \
                LOGD(FONT_COLOR_RESET""fmt"", ##arg); \
                } } while (false)