aboutsummaryrefslogtreecommitdiffstats
path: root/common/log.h
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2022-05-11 00:26:14 +0900
committerNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2022-05-11 00:38:09 +0900
commit8d58bbf113fa220d70f831bff8c89fdf824e7211 (patch)
treeffe1c390051b90740ddf10322a260326934c0ad5 /common/log.h
parentc94961b9e692204ea009d616687c355dea5f4cc1 (diff)
parent53f4fe700dee88cc9840a91f2f297aacf05e08d4 (diff)
Merge branch 'master' into marlinmarlin_13.0.1marlin/13.0.113.0.1
In commit of https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-devel/+/27402 updated drm-lease-manager checkout point. But that checkout point did not merge into marlin branch, only a master. This patch backport all drm-lease-manager update patch to the marlin release. Bug-AGL: SPEC-4366 Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> Change-Id: I4d64c47f76a0709f4e4580280d9984ca46833f8f
Diffstat (limited to 'common/log.h')
-rw-r--r--common/log.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/log.h b/common/log.h
index cd0c0e3..ed3b2db 100644
--- a/common/log.h
+++ b/common/log.h
@@ -19,8 +19,9 @@
#include <stdbool.h>
#include <stdio.h>
-#define DEBUG_LOG(FMT, ...) \
- dlm_log_print(true, stdout, "DEBUG: %s: " FMT, __func__, ##__VA_ARGS__)
+#define DEBUG_LOG(FMT, ...) \
+ dlm_log_print(true, stdout, "DEBUG: %s: line %d: " FMT, __func__, \
+ __LINE__, ##__VA_ARGS__)
#define INFO_LOG(FMT, ...) \
dlm_log_print(false, stdout, "INFO: " FMT, ##__VA_ARGS__)
#define WARN_LOG(FMT, ...) \