Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed May 6, 2024
1 parent ce175c3 commit affdfe7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/tabby/src/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use tabby_common::{
};
use tokio::time::sleep;
use tower_http::timeout::TimeoutLayer;
use tracing::{info, warn};
use tracing::{debug, info, warn};
use utoipa::{
openapi::security::{HttpAuthScheme, HttpBuilder, SecurityScheme},
Modify, OpenApi,
Expand Down Expand Up @@ -118,7 +118,7 @@ pub struct ServeArgs {
pub async fn main(config: &Config, args: &ServeArgs) {
load_model(args).await;

info!("Starting server, this might take a few minutes...");
debug!("Starting server, this might take a few minutes...");

#[cfg(feature = "ee")]
#[allow(deprecated)]
Expand Down
2 changes: 1 addition & 1 deletion crates/tabby/src/services/code.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl CodeSearchImpl {
loop {
match CodeSearchImpl::load(repository_access.clone()) {
Ok(code) => {
info!("Index is ready, enabling server...");
debug!("Index is ready, enabling code search...");
return code;
}
Err(err) => {
Expand Down

0 comments on commit affdfe7

Please sign in to comment.