fix: remove debug logs and fix cache clearing

This commit is contained in:
2025-06-14 15:05:18 +03:00
parent bece64c132
commit 661d79ce24
6 changed files with 52 additions and 29 deletions

View File

@ -20,7 +20,6 @@ import (
"errors"
"fmt"
"log/slog"
"runtime/debug"
"github.com/leonelquinteros/gotext"
"github.com/urfave/cli/v2"
@ -45,12 +44,10 @@ func HandleExitCoder(err error) {
slog.Error(err.Error())
}
}
debug.PrintStack()
cli.OsExiter(exitErr.ExitCode())
return
}
debug.PrintStack()
slog.Error(err.Error())
cli.OsExiter(1)
}