refactor: Add SERVER prefix to debug log message in server mode
This commit is contained in:
committed by
Andrew Phillips (aider)
parent
5a8420f7a1
commit
bd1d6d00c3
@@ -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));
|
||||||
|
|||||||
Reference in New Issue
Block a user