aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:22:01 +0200
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:57:42 +0200
commit14b14369c10abab2f0de2f7109735f95f1a4c94a (patch)
tree9fb65e4efb31adc4343493071c5b68bde084111f
parentd58a8d2190933816c0d1874dd66c2e63866100f6 (diff)
downloadmuhqs-game-14b14369c10abab2f0de2f7109735f95f1a4c94a.tar.gz
muhqs-game-14b14369c10abab2f0de2f7109735f95f1a4c94a.zip
remove logged newline and button list debug message
-rw-r--r--go/activities/buttonList.go1
-rw-r--r--go/game/state.go2
2 files changed, 1 insertions, 2 deletions
diff --git a/go/activities/buttonList.go b/go/activities/buttonList.go
index f3ea9f23..b715755d 100644
--- a/go/activities/buttonList.go
+++ b/go/activities/buttonList.go
@@ -41,7 +41,6 @@ func NewButtonList(width, height int, labels []string, handlers []func(*ui.Simpl
bl.AddWidget(btn)
y = y + BUTTON_LIST_BUTTON_HEIGHT + BUTTON_LIST_BUTTON_PADDING
- log.Println("add button at", x, y)
}
back := ui.NewSimpleButton(
diff --git a/go/game/state.go b/go/game/state.go
index f53f46ae..37f31422 100644
--- a/go/game/state.go
+++ b/go/game/state.go
@@ -464,7 +464,7 @@ func (s *LocalState) allPassing(skipFirst bool) (bool, []*Player) {
switch a := _a.(type) {
case *PassPriority:
- log.Info("priority passed\n", "player", p.Name, "passed", fmt.Sprintf("%d/%d", i+1, nPlayers))
+ log.Info("priority passed", "player", p.Name, "passed", fmt.Sprintf("%d/%d", i+1, nPlayers))
case nil:
log.Fatal("received nil action from ", p.Name, " at ", s.activePhase)
default: