Skip to content

Commit

Permalink
update command debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
CodedSakura committed Jul 27, 2023
1 parent 163feed commit 22e63b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.0.2

* Update command debug logging, bump versions

# 2.0.1

* Fix debug log statement
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
org.gradle.jvmargs=-Xmx1G

# Mod Properties
mod_version=2.0.1
mod_version=2.0.2
maven_group=dev.codedsakura.blossom
mod_slug=BlossomEnderChest
archives_base_name=blossom-ender-chest
Expand All @@ -16,4 +16,4 @@ loader_version=0.14.21

# Dependencies
fabric_version=0.83.0
blossomlib_version=2.5.1
blossomlib_version=2.5.3
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class BlossomEnderChest implements ModInitializer {
public void onInitialize() {
ServerLifecycleEvents.SERVER_STARTED.register(server -> {
CommandDispatcher<ServerCommandSource> dispatcher = server.getCommandManager().getDispatcher();
LOGGER.debug(CONFIG.commands);
LOGGER.debug("registering commands: {}", String.join(", ", CONFIG.commands));
Arrays.stream(CONFIG.commands)
.forEach(cmdName -> dispatcher
.register(literal(cmdName)
Expand Down

0 comments on commit 22e63b0

Please sign in to comment.