1
0
mirror of https://github.com/nitnelave/lldap.git synced 2023-04-12 14:25:13 +00:00

server: Print version on startup

This commit is contained in:
Valentin Tolmer 2022-07-01 14:23:50 +02:00
parent b387ceb1c4
commit 77cf42e39e

View File

@ -48,7 +48,7 @@ async fn create_admin_user(handler: &SqlBackendHandler, config: &Configuration)
#[instrument(skip_all)]
async fn set_up_server(config: Configuration) -> Result<ServerBuilder> {
info!("Starting LLDAP....");
info!("Starting LLDAP version {}", env!("CARGO_PKG_VERSION"));
let sql_pool = PoolOptions::new()
.max_connections(5)