From c44287bee078a1fc87538917c2fa7c9cdabbba36 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Tue, 15 Jul 2014 16:16:45 +0300 Subject: [PATCH] quick fix for compile error --- engine/action_trigger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/action_trigger.go b/engine/action_trigger.go index 418aa8ed5..716423ad5 100644 --- a/engine/action_trigger.go +++ b/engine/action_trigger.go @@ -44,7 +44,7 @@ type ActionTrigger struct { func (at *ActionTrigger) Execute(ub *Account) (err error) { if ub.Disabled { - return Logger.Err(fmt.Errorf("User %s is disabled and there are triggers in action!", ub.Id)) + return fmt.Errorf("User %s is disabled and there are triggers in action!", ub.Id) } // does NOT need to Lock() because it is triggered from a method that took the Lock var aac Actions