summaryrefslogtreecommitdiff
path: root/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/debug.h')
-rw-r--r--include/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/debug.h b/include/debug.h
index 7583ba9..9a20ef4 100644
--- a/include/debug.h
+++ b/include/debug.h
@@ -26,6 +26,6 @@
#define SECURE_LOGW LOGW
#endif
-#define DbgPrint(format, arg...) SECURE_LOGD("[%s/%s:%d] " format, basename(__FILE__), __func__, __LINE__, ##arg)
-#define ErrPrint(format, arg...) SECURE_LOGE("[%s/%s:%d] " format, basename(__FILE__), __func__, __LINE__, ##arg)
+#define DbgPrint(format, arg...) SECURE_LOGD(format, ##arg)
+#define ErrPrint(format, arg...) SECURE_LOGE(format, ##arg)
/* End of a file */