Release version 0.5.15
[platform/core/appfw/librua.git] / src / rua_private.h
index 08bbd00..fa53318 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (c) 2017 - 2019 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,6 +17,8 @@
 #ifndef __RUA_PRIVATE_H__
 #define __RUA_PRIVATE_H__
 
+#include <dlog.h>
+
 #ifdef LOG_TAG
 #undef LOG_TAG
 #endif
 #define RUA_DB_NAME ".rua.db"
 #define RUA_STAT_DB_NAME ".rua_stat.db"
 
-#endif /*__RUA_H__*/
+#ifndef _E
+#define _E LOGE
+#endif
+
+#ifndef _W
+#define _W LOGW
+#endif
+
+#ifndef _I
+#define _I LOGI
+#endif
+
+#ifndef _D
+#define _D LOGD
+#endif
+
+#endif /*__RUA_PRIVATE_H__*/