diff options
Diffstat (limited to 'client-web/source/logger.ts')
-rw-r--r-- | client-web/source/logger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client-web/source/logger.ts b/client-web/source/logger.ts index 0141281..7f15064 100644 --- a/client-web/source/logger.ts +++ b/client-web/source/logger.ts @@ -49,7 +49,7 @@ export function log(k: LogScope | LogDesc, message: string, ...data: unknown[]) setTimeout(() => { e.remove() }, 1000 + 500) - }, (d.error || d.warn) ? 30000 : 3000) + }, d.error ? 30000 : d.warn ? 10000 : 3000) } } |