Skip to content

Commit f21dde8

Browse files
committed
ensure logging level is lowercase
1 parent bbc360c commit f21dde8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vector-db-proxy/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async fn main() -> std::io::Result<()> {
6565
log::info!("Starting Vector DB Proxy APP...");
6666
let global_data = GLOBAL_DATA.read().await;
6767
let _ = set_all_env_vars().await;
68-
let logging_level = global_data.logging_level.clone();
68+
let logging_level = global_data.logging_level.clone().to_lowercase();
6969
let host = global_data.host.clone();
7070
let port = global_data.port.clone();
7171

0 commit comments

Comments
 (0)