From 87ed820e8025981d0748a85bcf010cc7fc06e353 Mon Sep 17 00:00:00 2001 From: TeoV Date: Fri, 12 Apr 2019 13:44:09 +0300 Subject: [PATCH] Change message of Action *log --- engine/action.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/action.go b/engine/action.go index 4fb81d24a..fa02e6ddd 100644 --- a/engine/action.go +++ b/engine/action.go @@ -140,10 +140,10 @@ func logAction(ub *Account, a *Action, acs Actions, extraData interface{}) (err switch { case ub != nil: body, _ := json.Marshal(ub) - utils.Logger.Info(fmt.Sprintf("Threshold hit, Balance: %s", body)) + utils.Logger.Info(fmt.Sprintf("LOG Account: %s", body)) case extraData != nil: body, _ := json.Marshal(extraData) - utils.Logger.Info(fmt.Sprintf(" extraData: %s", body)) + utils.Logger.Info(fmt.Sprintf("LOG ExtraData: %s", body)) } return }