diff --git a/web-chat/src/command.ts b/web-chat/src/command.ts index 7c1ae620ac..1ce72adece 100644 --- a/web-chat/src/command.ts +++ b/web-chat/src/command.ts @@ -92,6 +92,7 @@ function connections(waku: Waku | undefined): string[] { let strConnections = ' connections: ['; connections.forEach((connection) => { strConnections += JSON.stringify(connection.stat); + strConnections += "; " + JSON.stringify(connection.streams); }); strConnections += ']'; response.push(strConnections);