Skip to content

Commit

Permalink
fix(webserver): ceprintln should writes to debug!
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed May 4, 2024
1 parent ad3e5cf commit 61b851f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee/tabby-webserver/src/service/background_job/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl BackgroundJob for BackgroundJobImpl {
macro_rules! ceprintln {
($ctx:expr, $($params:tt)+) => {
{
tracing::warn!($($params)+);
tracing::debug!($($params)+);
$ctx.r#internal_eprintln(format!($($params)+)).await;
}
}
Expand Down

0 comments on commit 61b851f

Please sign in to comment.