[Connection][Network] Change Debug to Info for some Logs (#160) 4.0.1.14113
authorchleun-moon <32117100+chleun-moon@users.noreply.github.com>
Wed, 14 Mar 2018 07:41:24 +0000 (16:41 +0900)
committertaesubkim <35015408+taesubkim@users.noreply.github.com>
Wed, 14 Mar 2018 07:41:24 +0000 (16:41 +0900)
src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionInternalManager.cs
src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionProfile.cs
src/Tizen.Network.WiFi/Tizen.Network.WiFi/WiFiManagerImpl.cs

index 7f3718a..c4b254b 100755 (executable)
@@ -959,7 +959,7 @@ namespace Tizen.Network.Connection
             Log.Info(Globals.LogTag, "OpenProfileAsync");
             if (profile != null)
             {
-                Log.Debug(Globals.LogTag, "OpenProfileAsync " + profile.Name);
+                Log.Info(Globals.LogTag, "OpenProfileAsync " + profile.Name);
                 TaskCompletionSource<bool> task = new TaskCompletionSource<bool>();
                 Interop.Connection.ConnectionCallback Callback = (ConnectionError Result, IntPtr Data) =>
                 {
index 9ba3f3a..5ab232c 100755 (executable)
@@ -57,7 +57,7 @@ namespace Tizen.Network.Connection
         {
             add
             {
-                Log.Debug(Globals.LogTag, "ProfileStateChanged add");
+                Log.Info(Globals.LogTag, "ProfileStateChanged add");
                 context.Post((x) =>
                 {
                     if (_ProfileStateChanged == null)
@@ -69,7 +69,7 @@ namespace Tizen.Network.Connection
             }
             remove
             {
-                Log.Debug(Globals.LogTag, "ProfileStateChanged remove");
+                Log.Info(Globals.LogTag, "ProfileStateChanged remove");
                 context.Post((x) =>
                 {
                     _ProfileStateChanged -= value;
@@ -92,7 +92,7 @@ namespace Tizen.Network.Connection
                 }
             };
 
-            Log.Debug(Globals.LogTag, "ProfileStateChangedStart");
+            Log.Info(Globals.LogTag, "ProfileStateChangedStart");
             int ret = Interop.ConnectionProfile.SetStateChangeCallback(ProfileHandle, _profileChangedCallback, IntPtr.Zero);
             if ((ConnectionError)ret != ConnectionError.None)
             {
@@ -102,7 +102,7 @@ namespace Tizen.Network.Connection
 
         private void ProfileStateChangedStop()
         {
-            Log.Debug(Globals.LogTag, "ProfileStateChangedStop");
+            Log.Info(Globals.LogTag, "ProfileStateChangedStop");
             int ret = Interop.ConnectionProfile.UnsetStateChangeCallback(ProfileHandle);
             if ((ConnectionError)ret != ConnectionError.None)
             {
index 0578f01..ee356f5 100755 (executable)
@@ -114,6 +114,7 @@ namespace Tizen.Network.WiFi
         {
             get
             {
+                Log.Info(Globals.LogTag, "IsActive");
                 bool active;
                 int ret = Interop.WiFi.IsActive(GetSafeHandle(), out active);
                 if (ret != (int)WiFiError.None)