Skip to content

Commit

Permalink
fix: lower default logging level for statements to Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nc7s authored and abonander committed Mar 11, 2023
1 parent aff632a commit c03926c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-core/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ pub struct LogSettings {
impl Default for LogSettings {
fn default() -> Self {
LogSettings {
statements_level: LevelFilter::Info,
statements_level: LevelFilter::Debug,
slow_statements_level: LevelFilter::Warn,
slow_statements_duration: Duration::from_secs(1),
}
Expand Down

0 comments on commit c03926c

Please sign in to comment.