kourendlibrary: changed log from info to debug (#1575)

This commit is contained in:
Justin
2019-09-11 04:22:44 +10:00
committed by Kyle
parent 8fb47dd54e
commit 3181916d95

View File

@@ -132,7 +132,7 @@ class Library
b.clearBook();
b.getPossibleBooks().clear();
}
log.info("Library is now reset");
log.debug("Library is now reset");
}
synchronized void mark(WorldPoint loc, Book book)
@@ -172,7 +172,7 @@ class Library
return;
}
log.info("Setting bookcase {} to {}", bookcase.getIndex(), book);
log.debug("Setting bookcase {} to {}", bookcase.getIndex(), book);
for (; ; )
{
bookcase.setBook(book);
@@ -234,7 +234,7 @@ class Library
}
return found;
}).toArray();
log.info("Certainty is now {}", certainty);
log.debug("Certainty is now {}", certainty);
for (Bookcase b : byIndex)
{
@@ -822,4 +822,4 @@ class Library
add(1629, 3800, 2, 351);
add(1627, 3800, 2, 352);
}
}
}