summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Brandner <simon.brandner@partner.bmw.de>2013-05-23 11:02:37 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2013-07-19 16:54:57 +0200
commit277fca175316e182b5a1f1b854e6a0bc11654d6e (patch)
tree83470a2c1b20919b67612630e7bf65bd1afa4c5d
parentf64a166208cdd8e9151582410a7f11329f8d1437 (diff)
downloadDLT-daemon-277fca175316e182b5a1f1b854e6a0bc11654d6e.tar.gz
added function names in case of Failed to queue resending
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
-rw-r--r--src/lib/dlt_user.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/dlt_user.c b/src/lib/dlt_user.c
index c327491..d6c761c 100644
--- a/src/lib/dlt_user.c
+++ b/src/lib/dlt_user.c
@@ -1110,7 +1110,7 @@ int dlt_forward_msg(void *msgdata,size_t size)
if(dlt_user_queue_resend() < 0 && dlt_user.dlt_log_handle >= 0)
{
- dlt_log(LOG_WARNING, "Failed to queue resending.\n");
+ dlt_log(LOG_WARNING, "dlt_forward_msg: Failed to queue resending.\n");
}
}
@@ -2962,7 +2962,7 @@ DltReturnValue dlt_user_log_send_log(DltContextData *log, int mtype)
// Fail silenty if FIFO is not open
if(dlt_user_queue_resend() < 0 && dlt_user.dlt_log_handle >= 0)
{
- dlt_log(LOG_WARNING, "Failed to queue resending.\n");
+ dlt_log(LOG_WARNING, "dlt_user_log_send_log: Failed to queue resending.\n");
}
}
@@ -3075,7 +3075,7 @@ int dlt_user_log_send_register_application(void)
if(dlt_user_queue_resend() < 0 && dlt_user.dlt_log_handle >= 0)
{
- dlt_log(LOG_WARNING, "Failed to queue resending.\n");
+ dlt_log(LOG_WARNING, "dlt_user_log_send_register_application: Failed to queue resending.\n");
}
}
@@ -3186,7 +3186,7 @@ int dlt_user_log_send_register_context(DltContextData *log)
if(dlt_user_queue_resend() < 0 && dlt_user.dlt_log_handle >= 0)
{
- dlt_log(LOG_WARNING, "Failed to queue resending.\n");
+ dlt_log(LOG_WARNING, "dlt_user_log_send_register_context: Failed to queue resending.\n");
}
}