mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-14 02:24:27 +08:00
startup message fix
This commit is contained in:
parent
be48acf5ab
commit
ca3879284f
1 changed files with 9 additions and 1 deletions
|
@ -66,13 +66,21 @@ pub(crate) async fn command(cli: &crate::Cli) -> Result<()> {
|
|||
if console::user_attended() {
|
||||
info!("--------------------------------------------");
|
||||
info!("Warpgate is now running.");
|
||||
info!("Accepting SSH connections on {:?}", config.store.ssh.listen);
|
||||
if config.store.ssh.enable {
|
||||
info!("Accepting SSH connections on {:?}", config.store.ssh.listen);
|
||||
}
|
||||
if config.store.http.enable {
|
||||
info!(
|
||||
"Accepting HTTP connections on https://{:?}",
|
||||
config.store.http.listen
|
||||
);
|
||||
}
|
||||
if config.store.mysql.enable {
|
||||
info!(
|
||||
"Accepting MySQL connections on {:?}",
|
||||
config.store.mysql.listen
|
||||
);
|
||||
}
|
||||
info!("--------------------------------------------");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue