diff --git a/hbd/client/main.py b/hbd/client/main.py index 2cd1985..3b246ed 100644 --- a/hbd/client/main.py +++ b/hbd/client/main.py @@ -495,9 +495,7 @@ async def async_main(args, config): hb_port = config.get("hb_port", PORT) interval = config.get("interval", INTERVAL) - logger.info(f"hbc {__version__} starting on {iam}") - logger.info(f"Starting hbc for {iam} -> {hb_hosts}") - logger.info(f"Port: {hb_port}, Interval: {interval}s") + logger.info(f"hbc {__version__} on {iam} -> {hb_hosts} port={hb_port}, interval={interval}s") # Create connections connections = [] diff --git a/scripts/hbc_mini.py b/scripts/hbc_mini.py index d617ced..f293a6c 100755 --- a/scripts/hbc_mini.py +++ b/scripts/hbc_mini.py @@ -1038,7 +1038,7 @@ async def _async_main(args, cfg: Dict[str, Any]) -> int: port = cfg.get("hb_port", PORT) interval = cfg.get("interval", INTERVAL) - log.info("starting hbc_mini %s on %s -> %s port=%d interval=%ds",__version__, iam, args.hosts, port, interval) + log.info("hbc_mini %s on %s -> %s port=%d interval=%ds",__version__, iam, args.hosts, port, interval) connections: List[AsyncConnection] = [] conn_id = 1