refactor: Add SERVER prefix to debug log message in server mode

This commit is contained in:
Andrew Phillips
2025-08-12 15:54:05 -03:00
committed by Andrew Phillips (aider)
parent 5a8420f7a1
commit bd1d6d00c3
2 changed files with 1 additions and 1 deletions

View File

View File

@@ -43,7 +43,7 @@ async fn run_server(
conn: rusqlite::Connection, conn: rusqlite::Connection,
data_dir: PathBuf, data_dir: PathBuf,
) -> Result<()> { ) -> Result<()> {
debug!("Starting REST HTTP server on {}", config.address); debug!("SERVER: Starting REST HTTP server on {}", config.address);
// Use the existing database connection // Use the existing database connection
let db_conn = Arc::new(Mutex::new(conn)); let db_conn = Arc::new(Mutex::new(conn));