shared: Remove unused log macro 80/142980/1
authorChanwoo Choi <cw00.choi@samsung.com>
Tue, 8 Aug 2017 06:06:53 +0000 (15:06 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Tue, 8 Aug 2017 06:06:53 +0000 (15:06 +0900)
This patch just removes the unused log macro.

Change-Id: Icf707417845f27c8905e6f538c0f864bf57c919b
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
src/shared/log.h

index 0359108960af0bc349dfcca21386204ccb2e9ce6..105332d7a898d0dc0198ea4332add59cbe190b82 100644 (file)
 #define LOG_TAG "PASS"
 #endif /* LOG_TAG */
 
-
 #define _D(fmt, arg...)                do { SLOGD(fmt, ##arg); } while(0)
 #define _I(fmt, arg...)                do { SLOGI(fmt, ##arg); } while(0)
 #define _W(fmt, arg...)                do { SLOGW(fmt, ##arg); } while(0)
 #define _E(fmt, arg...)                do { SLOGE(fmt, ##arg); } while(0)
-#define _SD(fmt, arg...)       do { SECURE_SLOGD(fmt, ##arg); } while(0)
-#define _SI(fmt, arg...)       do { SECURE_SLOGI(fmt, ##arg); } while(0)
-#define _SW(fmt, arg...)       do { SECURE_SLOGW(fmt, ##arg); } while(0)
-#define _SE(fmt, arg...)       do { SECURE_SLOGE(fmt, ##arg); } while(0)
-
 #endif