Skip to content

Commit

Permalink
fix log level
Browse files Browse the repository at this point in the history
  • Loading branch information
tsionyx committed Feb 2, 2018
1 parent 93523ab commit e8fe052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynogram/core/solver/line.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ def _solve_with_method(
# when adding column, `is_column = True = 1`
# heap always pops the lowest item, so the rows will go first

LOG.info("Solving %s rows and %s columns with '%s' method",
row_indexes, column_indexes, method)
LOG.debug("Solving %s rows and %s columns with '%s' method",
row_indexes, column_indexes, method)

line_jobs = PriorityDict()
all_jobs = set()
Expand Down

0 comments on commit e8fe052

Please sign in to comment.