Skip to content

Commit

Permalink
tentatively fix validation error
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Vergnaud <[email protected]>
  • Loading branch information
ericvergnaud committed Sep 15, 2023
1 parent 6d21a53 commit 4816165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/node/src/transport/WsInboundTransport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class WebSocketTransportSession implements TransportSession {
}
this.socket.send(JSON.stringify(encryptedMessage), (error?) => {
if (error != undefined) {
this.logger.debug('Error sending message: ' + error )
this.logger.debug(`Error sending message: ${error}`)
throw new AriesFrameworkError(`${this.type} send message failed.`, { cause: error })
} else {
this.logger.debug(`${this.type} sent message successfully.`)
Expand Down

0 comments on commit 4816165

Please sign in to comment.