Skip to content

Commit

Permalink
Initialize sentry in the matchmaker
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Nov 21, 2021
1 parent 165118a commit 177a17e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bins/matchmaker/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ async fn main() {
});
}));

let _guard = sentry::init(sentry::ClientOptions {
release: sentry::release_name!(),
..Default::default()
});

let mut builder = env_logger::Builder::from_default_env();
builder.filter_level(log::LevelFilter::Info).init();

Expand Down

0 comments on commit 177a17e

Please sign in to comment.