Skip to content

Commit

Permalink
Fix formatting for log message
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgH93 committed Jun 27, 2023
1 parent 795cc63 commit 9123233
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void getBackpack(final OfflinePlayer player, final Callback<at.pcgamingfr

public void unloadBackpack(Backpack backpack)
{
plugin.getLogger().log(Level.INFO, "Unloading backpack of {} ({})", new Object[] {backpack.getOwner().getName(), backpack.getOwner().getUniqueId()});
plugin.getLogger().log(Level.INFO, "Unloading backpack of {0} ({1})", new Object[] {backpack.getOwner().getName(), backpack.getOwner().getUniqueId()});
if (forceSaveOnUnload)
{
backpack.forceSave();
Expand Down

0 comments on commit 9123233

Please sign in to comment.