logging tweak

This commit is contained in:
stryan 2021-09-23 13:15:22 -04:00
parent 80578e089d
commit ae073733c7

View File

@ -119,7 +119,7 @@ type SessionCommand struct {
} }
func (s *SessionCommand) String() string { func (s *SessionCommand) String() string {
return fmt.Sprintf("%v %v\n%v\n", s.ID, s.Command, s.GameCommand) return fmt.Sprintf("%v %v %v\n", s.ID, s.Command, s.GameCommand)
} }
type SessionCommandResult struct { type SessionCommandResult struct {
@ -130,5 +130,5 @@ type SessionCommandResult struct {
} }
func (s *SessionCommandResult) String() string { func (s *SessionCommandResult) String() string {
return fmt.Sprintf("%v %v\n%v\n", s.ID, s.Result, s.GameResult) return fmt.Sprintf("%v %v %v\n", s.ID, s.Result, s.GameResult)
} }