We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f659b commit f0c87b1Copy full SHA for f0c87b1
1 file changed
packages/core/src/node/ws.ts
@@ -61,8 +61,7 @@ export async function createWsServer(options: CreateWsServerOptions) {
61
62
wsClients.add(ws)
63
const color = meta.isTrusted ? c.green : c.yellow
64
- const trustedKeys = Object.keys(contextInternal.storage.auth.value().trusted)
65
- console.log(color`${MARK_INFO} Websocket client connected. [${meta.id}] [${meta.clientAuthToken}] (${meta.isTrusted ? 'trusted' : 'untrusted'}) authToken=${authToken} trustedKeys=${JSON.stringify(trustedKeys)} isClientAuthDisabled=${isClientAuthDisabled}`)
+ console.log(color`${MARK_INFO} Websocket client connected. [${meta.id}] [${meta.clientAuthToken}] (${meta.isTrusted ? 'trusted' : 'untrusted'})`)
66
},
67
onDisconnected: (ws, meta) => {
68
wsClients.delete(ws)
0 commit comments