Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 42d5957

Browse files
author
Hideki Itakura
committed
Changed from Log.e() to Log.v()
1 parent ca81435 commit 42d5957

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/com/couchbase/lite/android/AndroidNetworkReachabilityManager.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@ public void onReceive(android.content.Context context, Intent intent) {
5151
return;
5252
}
5353

54-
Log.e(Log.TAG_SYNC, "BroadcastReceiver.onReceive() isOnline(context)=" + isOnline(context));
55-
if (isOnline(context)) {
54+
boolean bOnline = isOnline(context);
55+
Log.v(Log.TAG_SYNC, "BroadcastReceiver.onReceive() bOnline=" + bOnline);
56+
57+
if (bOnline) {
5658
notifyListenersNetworkReachable();
5759
} else {
5860
notifyListenersNetworkUneachable();

0 commit comments

Comments
 (0)