We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437c404 commit 60c8b89Copy full SHA for 60c8b89
packages/firestore/src/util/log.ts
@@ -35,7 +35,7 @@ export function setLogLevel(newLevel: LogLevel): void {
35
export function logDebug(msg: string, ...obj: unknown[]): void {
36
if (logClient.logLevel <= LogLevel.DEBUG) {
37
const args = obj.map(argToString);
38
- logClient.error(`Firestore (${SDK_VERSION}): ${msg}`, ...args);
+ logClient.debug(`Firestore (${SDK_VERSION}): ${msg}`, ...args);
39
}
40
41
0 commit comments