Skip to content

Commit cac3f7d

Browse files
authored
Changing log level to info (#102)
1 parent 7187f05 commit cac3f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/google/firebase/internal/GaeThreadFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private Thread initThreadFactory(Runnable r) {
118118
thread = threadFactory.newThread(r);
119119
usesBackgroundThreads = true;
120120
} catch (IllegalStateException e) {
121-
logger.warn("Falling back to GAE's request-scoped threads. Firebase requires "
121+
logger.info("Falling back to GAE's request-scoped threads. Firebase requires "
122122
+ "manually-scaled instances for most operations.");
123123
threadFactory = createRequestScopedFactory();
124124
thread = threadFactory.newThread(r);

0 commit comments

Comments
 (0)