diff options
author | Jaehyun Kim <jeik01.kim@samsung.com> | 2020-10-07 20:57:48 +0900 |
---|---|---|
committer | Jaehyun Kim <jeik01.kim@samsung.com> | 2020-10-07 20:57:48 +0900 |
commit | 4e1d941e94590b2a41996b477f2563a9c860e1e5 (patch) | |
tree | a701ed99237458ae80ad8f89728f3d5b9d475f91 /src/main.c | |
parent | 23af53cf192b6f0b4faccac2883dbf1826585c01 (diff) | |
download | connman-4e1d941e94590b2a41996b477f2563a9c860e1e5.tar.gz connman-4e1d941e94590b2a41996b477f2563a9c860e1e5.tar.bz2 connman-4e1d941e94590b2a41996b477f2563a9c860e1e5.zip |
Fix an issue where the log option is applied incorrectlytizen_6.0.m2_releasesubmit/tizen_6.0_hotfix/20201103.115101submit/tizen_6.0_hotfix/20201102.192901submit/tizen_6.0/20201029.205501submit/tizen/20201007.120259accepted/tizen/unified/20201008.043010accepted/tizen/6.0/unified/hotfix/20201102.235749accepted/tizen/6.0/unified/20201030.105121
Change-Id: I57db81c2670b769bbedafb3e3d9db02218516bca
Signed-off-by: Jaehyun Kim <jeik01.kim@samsung.com>
Diffstat (limited to 'src/main.c')
-rwxr-xr-x | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |