Set logging level about recipe discovery to debug

This commit is contained in:
DBotThePony 2022-01-30 16:56:09 +07:00
parent 05a3b4a1d2
commit f12ccc84e2
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -111,9 +111,9 @@ private fun make(tag: Tag<Item>, value: ImpreciseFraction, complexity: Double =
}
private fun logResolutionError(text: String) {
LOGGER.error("... Item chain: " + seenItems.joinToString(" -> "))
LOGGER.debug("... Item chain: " + seenItems.joinToString(" -> "))
// LOGGER.error("Recipe chain: " + seenRecipes.joinToString(" -> "))
LOGGER.error(text)
LOGGER.debug(text)
}
private enum class ResultType {