Skip to content

Commit

Permalink
Unique out a warn that needs to be unique
Browse files Browse the repository at this point in the history
  • Loading branch information
flodnv committed Oct 10, 2024
1 parent 8f78790 commit 2cff42a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BedrockServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -742,9 +742,9 @@ void BedrockServer::runCommand(unique_ptr<BedrockCommand>&& _command, bool isBlo
auto _clusterMessengerCopy = _clusterMessenger;
bool result = _clusterMessengerCopy->runOnPeer(*command, false);
if (result) {
SINFO("Synchronizing while accepting commands, so forwarded " << command->request.methodLine << " to peer successfully");
SINFO("Synchronizing while accepting commands; successfully forwarded the command to peer", {{"command", command->request.methodLine}});
} else {
SWARN("Synchronizing while accepting commands, so forwarded " << command->request.methodLine << " to peer, but failed.");
SWARN("Synchronizing while accepting commands, but failed to forward the command to peer.", {{"command", command->request.methodLine}});
}
}

Expand Down

0 comments on commit 2cff42a

Please sign in to comment.