Skip to content

Commit 96aa08d

Browse files
committed
Log as warning
1 parent 621e2d2 commit 96aa08d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/FirebasePerformanceInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void onAppColdStart() {
3131
try {
3232
FirebasePerformance.getInstance();
3333
} catch (IllegalStateException ex) {
34-
logger.info(
34+
logger.warn(
3535
"FirebaseApp is not initialized. Firebase Performance will not be collecting any "
3636
+ "performance metrics until initialized. %s",
3737
ex);

firebase-sessions/src/main/kotlin/com/google/firebase/sessions/FirebaseSessions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ internal constructor(
149149
sessionCoordinator.attemptLoggingSessionEvent(sessionEvent)
150150
} catch (ex: IllegalStateException) {
151151
// This can happen if the app suddenly deletes the instance of FirebaseApp.
152-
Log.i(
152+
Log.w(
153153
TAG,
154154
"FirebaseApp is not initialized. Sessions library will not collect session data.",
155155
ex

0 commit comments

Comments
 (0)