lash/attack-of-the-clones #57

Merged
Alfred-mk merged 5 commits from lash/attack-of-the-clones into update-userdata-devtool 2025-04-14 12:29:51 +02:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit fa6980f545 - Show all commits

View File

@ -73,7 +73,6 @@ func main() {
fmt.Fprintf(os.Stderr, "cmd parse fail: %v\n", err)
os.Exit(1)
}
logg.Infof("start command", "conn", conns, "subcmd", x)
menuStorageService := storage.NewMenuStorageService(conns)

View File

@ -24,7 +24,7 @@ func formatItem(k []byte, v []byte, sessionId string) (string, error) {
if err != nil {
return "", err
}
s := fmt.Sprintf("%v\t%v\n", o.Label, string(v))
s := fmt.Sprintf("%v\n\t%v\n", o.Label, string(v))
return s, nil
}