Skip to content

Commit

Permalink
fix(mode): improper log debug not compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
mxafi committed Mar 22, 2024
1 parent 8f8cb28 commit 8fe1905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command/actionMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void Command::actionMode(Client& client) {
currentParamString = currentParamString.substr(1);
for (char mode : currentParamString) {
if (isModeSupported(mode) == false) {
LOG_DEBUG("Command::actionMode: mode not supported: " + mode);
LOG_DEBUG("Command::actionMode: mode not supported: " << mode);
client.appendToSendBuffer(RPL_ERR_UNKNOWNMODE_472(serverHostname_g, client.getNickname(), mode, channel.getName()));
return;
}
Expand Down

0 comments on commit 8fe1905

Please sign in to comment.