Skip to content

Commit

Permalink
node_sync -> mls_sync
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Nov 8, 2024
1 parent 1615ea5 commit 80b8878
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bindings_wasm/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ fn init_logging(options: LogOptions) -> Result<(), JsError> {
.get_or_init(|| {
console_error_panic_hook::set_once();
let filter = if let Some(f) = options.level {
tracing_subscriber::filter::LevelFilter::from_str(&f.to_str())
tracing_subscriber::filter::LevelFilter::from_str(f.to_str())
} else {
Ok(tracing_subscriber::filter::LevelFilter::INFO)
}?;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion xmtp_mls/src/groups/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod intents;
pub mod members;
pub mod scoped_client;

pub(super) mod node_sync;
pub(super) mod mls_sync;
pub(super) mod subscriptions;
pub mod validated_commit;

Expand Down

0 comments on commit 80b8878

Please sign in to comment.