Skip to content

Commit

Permalink
fix: log relay response messages
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Oct 29, 2024
1 parent f8a3c0c commit ad5cfd6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ export class ReservationStore extends TypedEventEmitter<ReservationStoreEvents>
let response: HopMessage

try {
this.log.trace('read response from %p', connection.remotePeer)
this.log.trace('reading response from %p', connection.remotePeer)
response = await hopstr.read(options)
} catch (err: any) {
stream.abort(err)
Expand All @@ -451,7 +451,7 @@ export class ReservationStore extends TypedEventEmitter<ReservationStoreEvents>
}
}

this.log.trace('read response from %p', response)
this.log.trace('read response %o', response)

if (response.status === Status.OK && response.reservation != null) {
// check that the returned relay has the relay address - this can be
Expand Down

0 comments on commit ad5cfd6

Please sign in to comment.