From 1fc35c25a1672ebdbe498d1a82f1adfce08b1f50 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Mon, 1 Oct 2012 13:26:56 +0300 Subject: [PATCH] removed debug printf --- timespans/responder.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/timespans/responder.go b/timespans/responder.go index 8003b4c4b..4e6e2742d 100644 --- a/timespans/responder.go +++ b/timespans/responder.go @@ -184,15 +184,12 @@ func (rs *Responder) GetBalance(arg console.ArgsGetBalance, reply *console.Reply ubKey := arg.Direction + ":" + arg.Tenant + ":" + arg.User userBalance, err := storageGetter.GetUserBalance(ubKey) if err != nil { - fmt.Println("here") return err } if balance, balExists := userBalance.BalanceMap[arg.BalanceId]; !balExists { // No match, balanceId not found - fmt.Printf("%+v : %s\n", userBalance, arg.BalanceId) return fmt.Errorf("-BALANCE_NOT_FOUND") } else { - fmt.Println("bal: ", balance) reply.Tenant = arg.Tenant reply.User = arg.User reply.Direction = arg.Direction