refactor: remove the exception logging from the previous commit's debug lines since it fills up the bot's log

This commit is contained in:
ChomeNS
2025-03-14 14:01:34 +07:00
parent 9ad02a35c9
commit a375818487
2 changed files with 6 additions and 3 deletions

View File

@@ -61,16 +61,19 @@ public class ChunkColumn {
// passing bot just for debugging? really?
bot.logger.error(
Component.translatable(
"Failed to set block at %s %s %s with state %s!",
"Failed to set block at %s %s %s in chunk %s %s with state %s!",
Component.text(x),
Component.text(y),
Component.text(z),
Component.text(pos.x()),
Component.text(pos.z()),
Component.text(id)
)
);
bot.logger.error(e);
// bot.logger.error(e);
}
}
}