summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_client.c
diff options
context:
space:
mode:
authorSascha Philipp <sascha.philipp@continental-corporation.com>2014-04-24 10:14:23 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2015-03-25 17:12:03 +0100
commitfe775798ca3cfe8f0f8355b9bc7b1d325a876035 (patch)
treea1be7f8e4bee7bc81ce18c6d485ccf4cb2580677 /src/daemon/dlt_daemon_client.c
parent8c424e0c59502259f0840f1cc83361cea9f4e37a (diff)
downloadDLT-daemon-fe775798ca3cfe8f0f8355b9bc7b1d325a876035.tar.gz
Reworked internal output
Change-Id: I371c1b234929fda46608f563f08cae141b97d0a9 Signed-off-by: Ralf Anton Beier <ralf.anton.beier@continental-corporation.com> Signed-off-by: Sascha Philipp <sascha.philipp@continental-corporation.com>
Diffstat (limited to 'src/daemon/dlt_daemon_client.c')
-rw-r--r--src/daemon/dlt_daemon_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/dlt_daemon_client.c b/src/daemon/dlt_daemon_client.c
index 041a105..c5293de 100644
--- a/src/daemon/dlt_daemon_client.c
+++ b/src/daemon/dlt_daemon_client.c
@@ -262,7 +262,7 @@ int dlt_daemon_client_send_control_message( int sock, DltDaemon *daemon, DltDaem
len=msg->headersize - sizeof(DltStorageHeader) + msg->datasize;
if (len>UINT16_MAX)
{
- dlt_log(LOG_CRIT,"Huge control message discarded!\n");
+ dlt_log(LOG_WARNING,"Huge control message discarded!\n");
return DLT_DAEMON_ERROR_UNKNOWN;
}
@@ -720,7 +720,7 @@ void dlt_daemon_control_get_log_info(int sock, DltDaemon *daemon, DltDaemonLocal
if (verbose)
{
snprintf(str,DLT_DAEMON_TEXTBUFSIZE,"Allocate %d bytes for response msg databuffer\n", resp.datasize);
- dlt_log(LOG_INFO, str);
+ dlt_log(LOG_DEBUG, str);
}
/* Allocate buffer for response message */
@@ -1598,7 +1598,7 @@ void dlt_daemon_control_message_time(int sock, DltDaemon *daemon, DltDaemonLocal
len=msg.headersize - sizeof(DltStorageHeader) + msg.datasize;
if (len>UINT16_MAX)
{
- dlt_log(LOG_CRIT,"Huge control message discarded!\n");
+ dlt_log(LOG_WARNING,"Huge control message discarded!\n");
/* free message */
dlt_message_free(&msg,0);