Skip to content

Commit

Permalink
fix: add ROLE and TENANT support
Browse files Browse the repository at this point in the history
  • Loading branch information
nicpuppa committed Oct 10, 2024
1 parent fada949 commit b15844c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ public RecordStreamLogger(final RecordStreamSource recordStreamSource) {
valueTypeLoggers.put(ValueType.USER, this::logUsersRecordValue);
valueTypeLoggers.put(ValueType.CLOCK, this::logClockRecordValue);
valueTypeLoggers.put(ValueType.AUTHORIZATION, Object::toString);
valueTypeLoggers.put(ValueType.ROLE, Object::toString);
valueTypeLoggers.put(ValueType.TENANT, Object::toString);
}

public void log() {
Expand Down

0 comments on commit b15844c

Please sign in to comment.