Fix WS log message

This commit is contained in:
Marc Baloup 2023-04-11 19:17:54 +02:00
parent 15982cb837
commit f036c22a56

View File

@ -276,9 +276,9 @@ public interface AbstractWS {
private String formatLogMessage(String message) {
String remote = getRemoteIdentifier();
String fullText = "[WS/" + getClass().getSimpleName() + "]";
String fullText = "[WS/" + getClass().getSimpleName() + "] ";
if (remote != null) {
fullText += " [" + remote + "]";
fullText += "[" + remote + "] ";
}
fullText += message;
return fullText;