From 903b14c8a1e6f1a3f86b702748d05c85e471b916 Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Wed, 26 Jan 2022 17:27:43 +0200 Subject: [PATCH] Remove loggers that were used for debugging purposes --- engine/libchargers.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/engine/libchargers.go b/engine/libchargers.go index 420cee511..89a3068f5 100644 --- a/engine/libchargers.go +++ b/engine/libchargers.go @@ -19,7 +19,6 @@ along with this program. If not, see package engine import ( - "fmt" "sort" "github.com/cgrates/cgrates/utils" @@ -54,8 +53,6 @@ func (cps ChargerProfiles) Sort() { } func (cp *ChargerProfile) Set(path []string, val interface{}, newBranch bool, _ string) (err error) { - utils.Logger.Crit(fmt.Sprintf("path: <%+v>", path)) - utils.Logger.Crit(fmt.Sprintf("val: <%+v>", utils.ToJSON(val))) if len(path) != 1 { return utils.ErrWrongPath }