diff --git a/sqlx-core/src/postgres/connection/stream.rs b/sqlx-core/src/postgres/connection/stream.rs index 950d8d0969..59b5289b8e 100644 --- a/sqlx-core/src/postgres/connection/stream.rs +++ b/sqlx-core/src/postgres/connection/stream.rs @@ -146,12 +146,13 @@ impl PgStream { PgSeverity::Log => Level::Trace, }; - if lvl <= log::STATIC_MAX_LEVEL && lvl <= log::max_level() { + if log::log_enabled!(target: "sqlx::postgres::notice", lvl) { log::logger().log( &log::Record::builder() .args(format_args!("{}", notice.message())) .level(lvl) .module_path_static(Some("sqlx::postgres::notice")) + .target("sqlx::postgres::notice") .file_static(Some(file!())) .line(Some(line!())) .build(),