Skip to content

Commit

Permalink
change loglevel for chatty log to trace (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid authored Apr 6, 2023
1 parent a589a70 commit 81f223e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func PermutationsWithConstraints(config export.L2Info, algo [][][]int, l []int,
temp := make([]int, 0)
temp = append(temp, l...)
temp = temp[0:e]
logrus.Debugf("%v -- %v", temp, result)
logrus.Tracef("Permutations %v -- %v", temp, result)
*solutions = append(*solutions, temp)
} else {
// Backtracking loop
Expand Down

0 comments on commit 81f223e

Please sign in to comment.