Remove loggers that were used for debugging purposes

This commit is contained in:
ionutboangiu
2022-01-26 17:27:43 +02:00
committed by Dan Christian Bogos
parent 2f7affbd7d
commit 903b14c8a1

View File

@@ -19,7 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
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
}