We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cd7fa commit 2516610Copy full SHA for 2516610
firebase-database/src/main/java/com/google/firebase/database/connection/PersistentConnectionImpl.java
@@ -559,10 +559,11 @@ public void onDisconnect(Connection.DisconnectReason reason) {
559
560
@Override
561
public void onKill(String reason) {
562
- if (logger.logsDebug())
563
- logger.debug(
564
- "Firebase Database connection was forcefully killed by the server. Will not attempt reconnect. Reason: "
565
- + reason);
+ logger.warn(
+ "Firebase Database connection was forcefully killed by the server. Will not attempt"
+ + " reconnect. Reason: "
+ + reason);
566
+
567
interrupt(SERVER_KILL_INTERRUPT_REASON);
568
}
569
0 commit comments