summaryrefslogtreecommitdiff
path: root/include/dlt/dlt_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dlt/dlt_common.h')
-rw-r--r--include/dlt/dlt_common.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h
index a82d5fd..acc1135 100644
--- a/include/dlt/dlt_common.h
+++ b/include/dlt/dlt_common.h
@@ -244,12 +244,9 @@ enum {
# define PRINT_FUNCTION_VERBOSE(_verbose) \
{ \
- static char _strbuf[255]; \
- \
if (_verbose) \
{ \
- snprintf(_strbuf, 255, "%s()\n", __func__); \
- dlt_log(LOG_INFO, _strbuf); \
+ dlt_vlog(LOG_INFO, "%s()\n", __func__); \
} \
}