summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSung-jae Park <nicesj.park@samsung.com>2013-06-27 14:14:45 +0900
committerSung-jae Park <nicesj.park@samsung.com>2013-06-27 14:14:45 +0900
commit7f1527bdba49a15ac068054e41b8075cb0ba9d1f (patch)
tree1281a1eafec473dcaa51fcec8301dcc64c34ca81
parent0c1ac8252e1557c8d075f22d2a6ecac7d60ec1f8 (diff)
downloadlivebox-service-7f1527bdba49a15ac068054e41b8075cb0ba9d1f.tar.gz
livebox-service-7f1527bdba49a15ac068054e41b8075cb0ba9d1f.tar.bz2
livebox-service-7f1527bdba49a15ac068054e41b8075cb0ba9d1f.zip
Update Log
Change-Id: I8bedfcad8cdc5e636e07dc19f03a9a6a38aca73c
-rw-r--r--include/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/debug.h b/include/debug.h
index 5021bfa..f9df62d 100644
--- a/include/debug.h
+++ b/include/debug.h
@@ -27,8 +27,8 @@
#endif
#if !defined(FLOG)
-#define DbgPrint(format, arg...) SECURE_LOGD("[%s/%s:%d] " format, util_basename(__FILE__), __func__, __LINE__, ##arg)
-#define ErrPrint(format, arg...) SECURE_LOGE("[%s/%s:%d] " format, util_basename(__FILE__), __func__, __LINE__, ##arg)
+#define DbgPrint(format, arg...) SECURE_LOGD(format, ##arg)
+#define ErrPrint(format, arg...) SECURE_LOGE(format, ##arg)
#else
extern FILE *__file_log_fp;
#define DbgPrint(format, arg...) do { fprintf(__file_log_fp, "[LOG] [%s/%s:%d] " format, util_basename(__FILE__), __func__, __LINE__, ##arg); fflush(__file_log_fp); } while (0)