summaryrefslogtreecommitdiff
path: root/src/daemon/dlt-daemon.c
diff options
context:
space:
mode:
authorSebastian Kloska <sebastian.kloska@snafu.de>2019-10-10 13:05:26 +0200
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2019-10-10 23:27:31 +0900
commitda36b5b4fe7a25da4a272618db67601c0f6e3d3a (patch)
treed49b526a8fa24f1298eb7b7c50f867192a85bd6b /src/daemon/dlt-daemon.c
parentdb669dda273b31215a6b002fd7c753f394649369 (diff)
downloadDLT-daemon-da36b5b4fe7a25da4a272618db67601c0f6e3d3a.tar.gz
Fix: Propper usage of LoggingMode in ".../dlt-runtime.cfg"
* Symptom: no offline trace file gets created even if runtime config LoggingMode==(2|3). * Reason: runtime config gets read *after* offline logging setup. * Solution: Read runtime config *before* offline logging setup. * Make the "read runtime config" function set a proper default value for logging mode instead if the *_init_* function setting up the logging. Signed-off-by: Sebastian Kloska <sebastian.kloska@snafu.de>
Diffstat (limited to 'src/daemon/dlt-daemon.c')
-rw-r--r--src/daemon/dlt-daemon.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/daemon/dlt-daemon.c b/src/daemon/dlt-daemon.c
index b53e5d1..970ad80 100644
--- a/src/daemon/dlt-daemon.c
+++ b/src/daemon/dlt-daemon.c
@@ -813,6 +813,11 @@ int main(int argc, char *argv[])
/* --- Daemon connection init end */
+ if (dlt_daemon_load_runtime_configuration(&daemon, daemon_local.flags.ivalue, daemon_local.flags.vflag) == -1) {
+ dlt_log(LOG_ERR, "Could not load runtime config\n");
+ return -1;
+ }
+
/* --- Daemon init phase 2 begin --- */
if (dlt_daemon_local_init_p2(&daemon, &daemon_local, daemon_local.flags.vflag) == -1) {
dlt_log(LOG_CRIT, "Initialization of phase 2 failed!\n");
@@ -884,11 +889,6 @@ int main(int argc, char *argv[])
daemon_local.flags.gatewayMode,
daemon_local.flags.vflag);
- if (dlt_daemon_load_runtime_configuration(&daemon, daemon_local.flags.ivalue, daemon_local.flags.vflag) == -1) {
- dlt_log(LOG_ERR, "Could not load runtime config\n");
- return -1;
- }
-
dlt_daemon_log_internal(&daemon,
&daemon_local,
"Daemon launched. Starting to output traces...",