feat: Add option logLevels.signupUsernameTaken to change log level of username already exists sign-up rejection (#9962)

This commit is contained in:
Lucas
2025-12-14 01:59:56 +01:00
committed by GitHub
parent 3b38dff6ca
commit f18f3073d7
6 changed files with 78 additions and 1 deletions

View File

@@ -786,4 +786,8 @@ export interface LogLevels {
:DEFAULT: error
*/
cloudFunctionError: ?string;
/* Log level used when a sign-up fails because the username already exists. Default is `info`. See [LogLevel](LogLevel.html) for available values.
:DEFAULT: info
*/
signupUsernameTaken: ?string;
}