From 713978d70fd3d72c97a295a4d7698ba42f60534f Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Mon, 14 Nov 2011 16:32:28 +0100 Subject: [PATCH] Using `is_verbose' instead of debug clause "nino" --- library/http_connection_handler.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/http_connection_handler.e b/library/http_connection_handler.e index a8e29895..ac0957bf 100644 --- a/library/http_connection_handler.e +++ b/library/http_connection_handler.e @@ -112,7 +112,7 @@ feature -- Parsing line = Void or end_of_stream loop n := line.count - debug ("nino") + if is_verbose then print ("%N" + line) end pos := line.index_of (':',1) @@ -144,7 +144,7 @@ feature -- Parsing local pos, next_pos: INTEGER do - debug ("nino") + if is_verbose then print ("%N## Parse HTTP request line ##") print ("%N") print (line)