summaryrefslogtreecommitdiff
path: root/src/lib/dlt_user.c
diff options
context:
space:
mode:
authorRavi Sankar P <ponnurangamravi.sankar@in.bosch.com>2018-05-16 14:29:46 +0530
committerChristoph Lipka <clipka@users.noreply.github.com>2018-12-21 10:16:46 +0100
commitbc282ba2f4173278e81ff411647dd27a1be074a4 (patch)
tree284a195a3a14cf96bf6423ac7876c980bdb8ce20 /src/lib/dlt_user.c
parentaff2511aa2a34fe91c02753f2d6f7b0044c82d80 (diff)
downloadDLT-daemon-bc282ba2f4173278e81ff411647dd27a1be074a4.tar.gz
Removed log level change callback notification while context register done with ll_ts API
Signed-off-by: Ravi Sankar P <ponnurangamravi.sankar@in.bosch.com>
Diffstat (limited to 'src/lib/dlt_user.c')
-rw-r--r--src/lib/dlt_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dlt_user.c b/src/lib/dlt_user.c
index f40efd7..34a5a3f 100644
--- a/src/lib/dlt_user.c
+++ b/src/lib/dlt_user.c
@@ -3356,7 +3356,7 @@ DltReturnValue dlt_log_string_int(DltContext *handle, DltLogLevelType loglevel,
{
dlt_user_log_write_string(&log, text);
dlt_user_log_write_int(&log, data);
-
+
if (dlt_user_log_write_finish(&log) < DLT_RETURN_OK)
{
return DLT_RETURN_ERROR;
@@ -3411,7 +3411,7 @@ DltReturnValue dlt_log_int(DltContext *handle, DltLogLevelType loglevel, int dat
if (dlt_user_log_write_start(handle, &log, loglevel) == DLT_RETURN_TRUE)
{
dlt_user_log_write_int(&log, data);
-
+
if (dlt_user_log_write_finish(&log) < DLT_RETURN_OK)
{
return DLT_RETURN_ERROR;