From 4e1d941e94590b2a41996b477f2563a9c860e1e5 Mon Sep 17 00:00:00 2001 From: Jaehyun Kim Date: Wed, 7 Oct 2020 20:57:48 +0900 Subject: [PATCH] Fix an issue where the log option is applied incorrectly Change-Id: I57db81c2670b769bbedafb3e3d9db02218516bca Signed-off-by: Jaehyun Kim --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ae17723..7938a06 100755 --- a/src/main.c +++ b/src/main.c @@ -941,8 +941,8 @@ static int config_init(const char *file) if (config) g_key_file_free(config); #if defined TIZEN_EXT - dlog_logging = connman_settings.file_log; - file_logging = connman_settings.dlog_log; + dlog_logging = connman_settings.dlog_log; + file_logging = connman_settings.file_log; simplified_log = connman_settings.simplified_log; #endif return 0; -- 2.7.4