Don't keep guard around

This commit is contained in:
Deirdre Connolly 2020-12-04 19:00:16 -05:00 committed by Deirdre Connolly
parent 25f6fd25b3
commit 8b268e3f71
1 changed files with 2 additions and 2 deletions

View File

@ -12,13 +12,13 @@ fn main() {
// The Sentry default config pulls in the DSN from the `SENTRY_DSN`
// environment variable.
let _guard = sentry::init(
std::mem::forget(sentry::init(
sentry::ClientOptions {
debug: true,
..Default::default()
}
.add_integration(tracing_integration),
);
));
}
abscissa_core::boot(&APPLICATION);