Completed change on debug handler and filter, to use WSF_DEBUG_INFORMATION.

This commit is contained in:
2014-12-02 10:45:33 +01:00
parent 0caad2105f
commit 023e03bb8f
3 changed files with 4 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ feature -- Basic operations
-- Execute the filter
local
s: STRING_8
dbg: WSF_DEBUG_OUTPUT
dbg: WSF_DEBUG_INFORMATION
do
create s.make (2048)
create dbg.make

View File

@@ -52,7 +52,6 @@ feature -- Access
p: WSF_PAGE_RESPONSE
l_len: INTEGER
dbg: WSF_DEBUG_INFORMATION
utf: UTF_CONVERTER
do
create s.make (2048)
s.append ("= EWF DEBUG =")

View File

@@ -112,13 +112,13 @@ feature -- Execution
a_output.append ("Environment vars:")
a_output.append (eol)
across
(create {EXECUTION_ENVIRONMENT}).starting_environment_variables as ic
(create {EXECUTION_ENVIRONMENT}).starting_environment as ic
loop
a_output.append_character (' ')
a_output.append_character ('-')
a_output.append_string (ic.key)
a_output.append_string (html_encoder.general_encoded_string (ic.key))
a_output.append_character ('=')
a_output.append_string (ic.item)
a_output.append_string (html_encoder.general_encoded_string (ic.item))
a_output.append (eol)
end
a_output.append (eol)