summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorJaehyun Kim <jeik01.kim@samsung.com>2020-10-07 11:08:12 +0000
committerGerrit Code Review <gerrit@review>2020-10-07 11:08:12 +0000
commit23af53cf192b6f0b4faccac2883dbf1826585c01 (patch)
tree1b64bc8925c6f5467d4c2dba1d6d77babfd86850 /plugins
parent515ec5f2286e75d8a607d88fad3909a692a7e0dc (diff)
parent92632d79d49dd50e5a162b2cb78ca53a75d570e2 (diff)
downloadconnman-23af53cf192b6f0b4faccac2883dbf1826585c01.tar.gz
connman-23af53cf192b6f0b4faccac2883dbf1826585c01.tar.bz2
connman-23af53cf192b6f0b4faccac2883dbf1826585c01.zip
Merge "Add support for dlog" into tizen
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/wifi.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/wifi.c b/plugins/wifi.c
index d532e935..6672f0dd 100755
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -3353,6 +3353,9 @@ static void system_killed(void)
static int network_probe(struct connman_network *network)
{
+#if defined TIZEN_EXT
+ if (!simplified_log)
+#endif
DBG("network %p", network);
return 0;
@@ -4819,7 +4822,9 @@ static void network_added(GSupplicantNetwork *supplicant_network)
mode = g_supplicant_network_get_mode(supplicant_network);
identifier = g_supplicant_network_get_identifier(supplicant_network);
-
+#if defined TIZEN_EXT
+ if (!simplified_log)
+#endif
DBG("%s", identifier);
if (!g_strcmp0(mode, "adhoc"))
@@ -5072,7 +5077,8 @@ static void network_changed(GSupplicantNetwork *network, const char *property)
name = g_supplicant_network_get_name(network);
#if defined TIZEN_EXT
- DBG("name %s property %s", name, property);
+ if (!simplified_log)
+ DBG("name %s property %s", name, property);
#else
DBG("name %s", name);
#endif