Skip to content

Commit 291200f

Browse files
committed
Fix websocket port debug message
1 parent d711f10 commit 291200f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qz/ws/WebsocketPorts.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ public static WebsocketPorts fromList(List<Integer> secure, List<Integer> insecu
143143
fallback = true;
144144
}
145145
if(fallback) {
146-
log.warn("Falling back to default WebSocket ports: ({}), ({})", secure, insecure);
147146
secure = Arrays.asList(Constants.DEFAULT_WSS_PORTS);
148147
insecure = Arrays.asList(Constants.DEFAULT_WS_PORTS);
148+
log.warn("Falling back to default WebSocket ports: ({}), ({})", secure, insecure);
149149
}
150150

151151
return new WebsocketPorts(Collections.unmodifiableList(secure), Collections.unmodifiableList(insecure));

0 commit comments

Comments
 (0)