From 300153f961db74ea8bcb0a7a5b97f501dffe1898 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Wed, 4 Dec 2013 12:23:33 +0200 Subject: [PATCH] better *log action --- engine/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/action.go b/engine/action.go index b815a275c..c79196e84 100644 --- a/engine/action.go +++ b/engine/action.go @@ -89,7 +89,7 @@ func getActionFunc(typ string) (actionTypeFunc, bool) { } func logAction(ub *UserBalance, a *Action) (err error) { - Logger.Info(fmt.Sprintf("%v %v %v", a.BalanceId, a.Balance)) + Logger.Info(fmt.Sprintf("%v %+v", a.BalanceId, a.Balance)) return }