Skip to content

Commit

Permalink
make fields of log struct public
Browse files Browse the repository at this point in the history
  • Loading branch information
eilayk committed Jan 16, 2024
1 parent bbbe96e commit 4a8ae68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/messages/src/logging/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ use proptest_derive::Arbitrary;
#[cfg_attr(feature = "ts", ts(export))]
#[cfg_attr(test, derive(Arbitrary))]
pub struct Log {
level: LogLevel,
event: Event,
pub level: LogLevel,
pub event: Event,
}

impl Log {
Expand Down

0 comments on commit 4a8ae68

Please sign in to comment.