summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_common.c
diff options
context:
space:
mode:
authorSascha Philipp <sascha.philipp@continental-corporation.com>2014-10-06 13:07:48 +0200
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2015-03-25 17:12:14 +0100
commit3c89cdf9ca2aae9e0a602997ed0245692ddf976a (patch)
tree07fc261d9af3fce4bfc186369fd37e3e09bd3520 /src/daemon/dlt_daemon_common.c
parent5dd64263c2dc518aaf1d80f3521fa2cc452f6c8d (diff)
downloadDLT-daemon-3c89cdf9ca2aae9e0a602997ed0245692ddf976a.tar.gz
Change daemon state handling to have all traces in online trace even when offline trace is active
Change-Id: Ic212c4956582b18e05739d593bf5c792d60d9c00 Signed-off-by: Sascha Philipp <sascha.philipp@continental-corporation.com>
Diffstat (limited to 'src/daemon/dlt_daemon_common.c')
-rw-r--r--src/daemon/dlt_daemon_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/dlt_daemon_common.c b/src/daemon/dlt_daemon_common.c
index 464bd28..ce6af70 100644
--- a/src/daemon/dlt_daemon_common.c
+++ b/src/daemon/dlt_daemon_common.c
@@ -1296,7 +1296,7 @@ void dlt_daemon_change_state(DltDaemon *daemon, DltDaemonState newState)
daemon->state = DLT_DAEMON_STATE_INIT;
break;
case DLT_DAEMON_STATE_BUFFER:
- dlt_log(LOG_INFO,"Switched to buffer state.\n");
+ dlt_log(LOG_INFO,"Switched to buffer state for socket connections.\n");
daemon->state = DLT_DAEMON_STATE_BUFFER;
break;
case DLT_DAEMON_STATE_BUFFER_FULL:
@@ -1304,7 +1304,7 @@ void dlt_daemon_change_state(DltDaemon *daemon, DltDaemonState newState)
daemon->state = DLT_DAEMON_STATE_BUFFER_FULL;
break;
case DLT_DAEMON_STATE_SEND_BUFFER:
- dlt_log(LOG_INFO,"Switched to send buffer state.\n");
+ dlt_log(LOG_INFO,"Switched to send buffer state for socket connections.\n");
daemon->state = DLT_DAEMON_STATE_SEND_BUFFER;
break;
case DLT_DAEMON_STATE_SEND_DIRECT: