From 8bb41d2de50ebe0d6d94cd4431c4dae4fe8045d9 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 30 Jul 2019 22:24:53 +0200 Subject: [PATCH] vweb: print address of the app --- vlib/vweb/vweb.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 96c363b0f4..aa4c89ba1c 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -70,6 +70,7 @@ $html } pub fn run(port int) { + println('Running vweb app on http://localhost:$port ...') l := net.listen(port) or { panic('failed to listen') return } for { conn := l.accept() or {