Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] #6042 - switch debug level to verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
zugaldia committed Aug 24, 2016
1 parent 9e2aa93 commit 883e0e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public boolean isConnected() {
ConnectivityManager cm = (ConnectivityManager) applicationContext.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
boolean result = (activeNetwork != null && activeNetwork.isConnected());
Log.i("IOUtils", "isConnected result = " + result);
Log.v("IOUtils", "isConnected result = " + result);
return result;
}

Expand Down

0 comments on commit 883e0e6

Please sign in to comment.