Commit 6bb06329 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Show servers listen address.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2706 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent ddb40715
......@@ -82,7 +82,7 @@ server_thread(void *priv)
CAST_OBJ_NOTNULL(s, priv, SERVER_MAGIC);
assert(s->sock >= 0);
printf("## %-4s started\n", s->name);
printf("## %-4s started on %s\n", s->name, s->listen);
for (i = 0; i < s->repeat; i++) {
if (s->repeat > 1)
printf("### %-4s iteration %d\n", s->name, i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment