Skip to content

Commit

Permalink
fix log format
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Mar 28, 2023
1 parent 5b77531 commit 1de3228
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ private void reloadTasks() {
scheduler.runTaskTimerAsynchronously(this, () -> {
fileSize = count() / 1048576.0D / 1000.0D;
if (configCache.log_is_enabled) {
logger.info("Updated filesize ("
+ configCache.filesize_display_format.format(fileSize) + "GB, Spoofed size: "
+ (configCache.filesize_display_format.format(fileSize) + configCache.additional_spoofed_filesize) + "GB) asynchronously. "
logger.info("Updated filesize asynchronously. "
+ "(Real size: " + configCache.filesize_display_format.format(fileSize) + "GB, "
+ "Spoofed size: " + configCache.filesize_display_format.format(fileSize + configCache.additional_spoofed_filesize) + "GB). "
+ "Unique player joins: " + uniquePlayers
);
}
Expand Down

0 comments on commit 1de3228

Please sign in to comment.