diff --git a/server/src/application/removeGame.go b/server/src/application/removeGame.go index 3e4e7e8..053f617 100644 --- a/server/src/application/removeGame.go +++ b/server/src/application/removeGame.go @@ -56,7 +56,7 @@ func (app *Application) removeGame(gm *game.Game) error { log.Error("failed to remove quotes\n") return nil } - log.Info("game %s: removing state file", gm.GetId()) + log.Info("game %s: removing state file\n", gm.GetId()) stateFilename := path.Join(gameBaseDir, "state.json") if err := os.Remove(stateFilename); err != nil { if !errors.Is(err, os.ErrNotExist) {