From 969333323641ef6f83798e7efab7ca5c85c031c5 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Sat, 31 Oct 2020 00:08:49 -0400 Subject: [PATCH] Logging added --- chess.go | 1 + 1 file changed, 1 insertion(+) diff --git a/chess.go b/chess.go index 34ef283..48f95f2 100644 --- a/chess.go +++ b/chess.go @@ -82,6 +82,7 @@ func showBoard(m chat1.MsgSummary, g *Game) { if err := pos.UnmarshalText([]byte(fenStr)); err != nil { log.LogError(fmt.Sprintf("Error in ShowBoard pos.UnmasrhalText: %+v\n", err)) } + log.LogInfo("Trying to check Moves History") if len(g.Game.MovesHistory()) != 0 { // write board SVG to file yellow := color.RGBA{255, 255, 0, 1}