You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* (Optional) Overrides the log levels used internally by Parse Server to log events.
99
99
:DEFAULT: {} */
100
100
logLevels: ?LogLevels;
101
+
/* (Optional) Overrides the log levels used by specific log events.
102
+
:DEFAULT: {} */
103
+
logEvents: ?LogEvents;
101
104
/* Maximum number of logs to keep. If not set, no logs will be removed. This can be a number of files or number of days. If using days, add 'd' as the suffix. (default: null) */
102
105
maxLogFiles: ?NumberOrString;
103
106
/* Disables console output
@@ -790,3 +793,10 @@ export interface LogLevels {
790
793
*/
791
794
cloudFunctionError: ?string;
792
795
}
796
+
797
+
exportinterfaceLogEvents{
798
+
/* Log level used when a sign-up fails because the username already exists. Default is `error`. See [LogLevel](LogLevel.html) for available values.
0 commit comments