This commit is contained in:
2024-05-06 23:34:09 +02:00
parent aa2d9b2f29
commit 251265a88a
3 changed files with 15 additions and 5 deletions

1
Cargo.lock generated
View File

@@ -3878,6 +3878,7 @@ dependencies = [
"once_cell",
"prisma-client-rust",
"sentry",
"sentry-tracing",
"serde",
"tokio",
"tower-http",

View File

@@ -24,4 +24,5 @@ sentry = { version = "0.32.3", features = ["debug-images"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
sentry-tracing = "0.32.3"
tower-http = { version = "0.5.2", features = ["trace"] }

View File

@@ -4,7 +4,9 @@ pub mod prisma;
pub mod views;
use sentry::{integrations::debug_images::DebugImagesIntegration, types::Dsn, ClientOptions};
use sentry_tracing::EventFilter;
use tracing::info;
use tracing_subscriber::{filter, layer::SubscriberExt, util::SubscriberInitExt};
use std::{net::SocketAddr, str::FromStr};
@@ -21,11 +23,6 @@ async fn start_app() {
#[tokio::main]
async fn main() {
tracing_subscriber::fmt()
.with_target(false)
.compact()
.init();
let options = ClientOptions {
dsn: Some(Dsn::from_str(&config::CONFIG.sentry_dsn).unwrap()),
default_integrations: false,
@@ -35,5 +32,16 @@ async fn main() {
let _guard = sentry::init(options);
let sentry_layer = sentry_tracing::layer().event_filter(|md| match md.level() {
&tracing::Level::ERROR => EventFilter::Event,
_ => EventFilter::Ignore,
});
tracing_subscriber::registry()
.with(tracing_subscriber::fmt::layer().with_target(false))
.with(filter::LevelFilter::INFO)
.with(sentry_layer)
.init();
start_app().await;
}