fix: alist error resp

This commit is contained in:
krau
2025-02-01 14:36:08 +08:00
parent f00aa189e3
commit 6c6ee77067
2 changed files with 23 additions and 1 deletions

View File

@@ -18,5 +18,5 @@ func Run(_ *cobra.Command, _ []string) {
quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
sig := <-quit
logger.L.Info(sig, "exit")
logger.L.Info(sig, ", exit")
}