Skip to content

Commit 82f6bce

Browse files
authored
Merge pull request #25 from Bekkie/main
Reverted mistake in showing bridge IP as server IP
2 parents 1c707fa + 3633746 commit 82f6bce

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tado_local/__main__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,11 @@ def _mdns_done(fut: 'asyncio.Future'):
181181

182182
logger.info( "*** Tado Local ready! ***")
183183
logger.info(f"Bridge IP: {bridge_ip}")
184-
logger.info(f"API Server: http://{bridge_ip}:{args.port}")
185-
logger.info(f"Documentation: http://{bridge_ip}:{args.port}/docs")
186-
logger.info(f"Status: http://{bridge_ip}:{args.port}/status")
187-
logger.info(f"Thermostats: http://{bridge_ip}:{args.port}/thermostats")
188-
logger.info(f"Live Events: http://{bridge_ip}:{args.port}/events")
184+
logger.info(f"API Server: http://0.0.0.0:{args.port}")
185+
logger.info(f"Documentation: http://0.0.0.0:{args.port}/docs")
186+
logger.info(f"Status: http://0.0.0.0:{args.port}/status")
187+
logger.info(f"Thermostats: http://0.0.0.0:{args.port}/thermostats")
188+
logger.info(f"Live Events: http://0.0.0.0:{args.port}/events")
189189

190190
# Configure uvicorn logging to match our format and prevent duplicates
191191
if args.syslog:

0 commit comments

Comments
 (0)