Skip to content

Commit 6ba7371

Browse files
authored
log_stdio.cc: add missing switch block for kLogLevelNotice (#8951)
1 parent 03e174c commit 6ba7371

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Firestore/core/src/util/log_stdio.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ void LogMessage(LogLevel log_level, const std::string& message) {
5656
case kLogLevelError:
5757
level_word = "ERROR";
5858
break;
59+
case kLogLevelNotice:
60+
level_word = "INFO";
61+
break;
5962
default:
6063
UNREACHABLE();
6164
break;

0 commit comments

Comments
 (0)