Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 15d931a

Browse files
fix logging full event (#11755)
* fix logging full event * put stacktrace last * Update src/components/views/rooms/EventTile.tsx Co-authored-by: Richard van der Hoff <[email protected]> --------- Co-authored-by: Richard van der Hoff <[email protected]>
1 parent 5ff9651 commit 15d931a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/rooms/EventTile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ export class UnwrappedEventTile extends React.Component<EventTileProps, IState>
593593
private verifyEvent(): void {
594594
this.doVerifyEvent().catch((e) => {
595595
const event = this.props.mxEvent;
596-
logger.error("Error getting encryption info on event", e, event);
596+
logger.error(`Error getting encryption info on event ${event.getId()} in room ${event.getRoomId()}`, e);
597597
});
598598
}
599599

0 commit comments

Comments
 (0)