Don't keep guard around
This commit is contained in:
parent
25f6fd25b3
commit
8b268e3f71
|
|
@ -12,13 +12,13 @@ fn main() {
|
||||||
|
|
||||||
// The Sentry default config pulls in the DSN from the `SENTRY_DSN`
|
// The Sentry default config pulls in the DSN from the `SENTRY_DSN`
|
||||||
// environment variable.
|
// environment variable.
|
||||||
let _guard = sentry::init(
|
std::mem::forget(sentry::init(
|
||||||
sentry::ClientOptions {
|
sentry::ClientOptions {
|
||||||
debug: true,
|
debug: true,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}
|
}
|
||||||
.add_integration(tracing_integration),
|
.add_integration(tracing_integration),
|
||||||
);
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
abscissa_core::boot(&APPLICATION);
|
abscissa_core::boot(&APPLICATION);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue