Completed change on debug handler and filter, to use WSF_DEBUG_INFORMATION.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 =")
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user