Skip to content

Commit

Permalink
Merge pull request #77 from uorocketry/update-log
Browse files Browse the repository at this point in the history
Make fields of log struct public so that it may be processed by the ground station.
  • Loading branch information
NoahSprenger authored Jan 16, 2024
2 parents bbbe96e + 4a8ae68 commit 8757d59
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 8757d59

Please sign in to comment.