Skip to content

Commit

Permalink
Remove unecessary newline char
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-webb committed Nov 9, 2023
1 parent 743bfb7 commit f70a925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/cpp/socketappenderskeleton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void SocketAppenderSkeleton::monitor()
LogString msg(LOG4CXX_STR("Could not connect to [")
+ _priv->address->toString() + LOG4CXX_STR(":"));
StringHelper::toString(_priv->port, p, msg);
msg += LOG4CXX_STR("].\n");
msg += LOG4CXX_STR("].");
LogLog::error(msg, e);
}

Expand Down

0 comments on commit f70a925

Please sign in to comment.