Fix WS log message
This commit is contained in:
parent
15982cb837
commit
f036c22a56
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user