summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhyunho <hhstark.kang@samsung.com>2020-01-22 14:48:18 +0900
committerhyunho <hhstark.kang@samsung.com>2020-01-30 14:52:35 +0900
commitf4d9c079f657eaab73bbe8ec38ff87b17bd23c06 (patch)
tree0ae7705d46126fbe69817165804bb64b26b2b555
parent620358ea7292fb000f5e47032210805a40a092a9 (diff)
downloadbundle-f4d9c079f657eaab73bbe8ec38ff87b17bd23c06.tar.gz
bundle-f4d9c079f657eaab73bbe8ec38ff87b17bd23c06.tar.bz2
bundle-f4d9c079f657eaab73bbe8ec38ff87b17bd23c06.zip
Remove wrong log tag definition
Change-Id: Ie463b189b37cfed6630811653825d956e3ab0347 Signed-off-by: hyunho <hhstark.kang@samsung.com>
-rw-r--r--include/bundle_cpp.h7
-rw-r--r--src/bundle_cpp.cc8
2 files changed, 1 insertions, 14 deletions
diff --git a/include/bundle_cpp.h b/include/bundle_cpp.h
index 33e9176..d95a241 100644
--- a/include/bundle_cpp.h
+++ b/include/bundle_cpp.h
@@ -28,7 +28,6 @@
*/
#include <bundle.h>
-#include <dlog.h>
#include <cstdio>
#include <memory>
@@ -36,12 +35,6 @@
#include <utility>
#include <vector>
-#ifdef LOG_TAG
-#undef LOG_TAG
-#endif
-
-#define LOG_TAG "BUNDLE"
-
#ifndef EXPORT_API
#define EXPORT_API __attribute__((visibility("default")))
#endif
diff --git a/src/bundle_cpp.cc b/src/bundle_cpp.cc
index 2e5e6ca..9f878e6 100644
--- a/src/bundle_cpp.cc
+++ b/src/bundle_cpp.cc
@@ -21,13 +21,7 @@
#include "bundle_cpp_implementation.h"
#include "bundle_cpp.h"
#include "bundle_internal.h"
-
-
-#ifdef LOG_TAG
-#undef LOG_TAG
-#endif
-
-#define LOG_TAG "BUNDLE"
+#include "bundle_log.h"
namespace tizen_base {
Bundle::Impl::Impl(Bundle* parent, bool copy, bool own)