Skip to content

Commit 1a13ce2

Browse files
authored
Warn when stream is closing due to error, not debug. (#1561)
1 parent 08ecaa8 commit 1a13ce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/remote/AbstractStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public void onClose(Status status) {
142142
"(%x) Stream closed.",
143143
System.identityHashCode(AbstractStream.this));
144144
} else {
145-
Logger.debug(
145+
Logger.warn(
146146
AbstractStream.this.getClass().getSimpleName(),
147147
"(%x) Stream closed with status: %s.",
148148
System.identityHashCode(AbstractStream.this),

0 commit comments

Comments
 (0)