1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-20 06:21:06 +02:00

updated restore backup log error from debug to warn

This commit is contained in:
Gani Georgiev 2024-12-14 10:40:29 +02:00
parent d5d764f83e
commit 011f323bcc

View File

@ -219,7 +219,7 @@ func (app *BaseApp) RestoreBackup(ctx context.Context, name string) error {
_ = tempZip.Close()
err = os.Remove(tempZip.Name())
if err != nil {
e.App.Logger().Debug(
e.App.Logger().Warn(
"[RestoreBackup] Failed to remove the temp zip backup file",
slog.String("file", tempZip.Name()),
slog.String("error", err.Error()),