From ecd4b6952907024dbea99ca32f6d2c09c5060017 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sat, 18 Feb 2017 22:12:01 +0100 Subject: [PATCH] add debug message --- tools/proxy.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/proxy.c b/tools/proxy.c index 6d6b0c930..b3b2e84b6 100644 --- a/tools/proxy.c +++ b/tools/proxy.c @@ -223,6 +223,8 @@ static int is_hermit_available(void) if (!file) return 0; + PROXY_DEBUG("Open log file\n"); + while(getline(&line, &n, file) > 0) { if (strstr(line, "TCP server is listening.") != NULL) { ret = 1;