enables debug without sentry

This commit is contained in:
mpostma 2020-05-14 10:42:01 +02:00
parent 308c652b30
commit be1320d21d

View File

@ -20,7 +20,7 @@ static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
async fn main() -> Result<(), MainError> {
let opt = Opt::from_args();
#[cfg(feature = "sentry")]
#[cfg(all(not(debug_assertions), feature = "sentry"))]
let _sentry = sentry::init((
"https://5ddfa22b95f241198be2271aaf028653@sentry.io/3060337",
sentry::ClientOptions {
@ -38,7 +38,7 @@ async fn main() -> Result<(), MainError> {
);
}
#[cfg(feature = "sentry")]
#[cfg(all(not(debug_assertions), feature = "sentry"))]
if !opt.no_analytics {
sentry::integrations::panic::register_panic_handler();
sentry::integrations::env_logger::init(None, Default::default());