Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class GraphQLWebsocketHandler {
return await this.handleTerminate(envelope.connectionID)
default:
// This branch should be impossible, but just in case
throw new Error(`Unknown message type. Message=${clientMessage}`)
throw new Error(`Unknown message type. Message=${JSON.stringify(clientMessage)}`)
}
} catch (e) {
const error = e as Error
Expand Down
Loading