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
|
-- Execute the filter
|
||||||
local
|
local
|
||||||
s: STRING_8
|
s: STRING_8
|
||||||
dbg: WSF_DEBUG_OUTPUT
|
dbg: WSF_DEBUG_INFORMATION
|
||||||
do
|
do
|
||||||
create s.make (2048)
|
create s.make (2048)
|
||||||
create dbg.make
|
create dbg.make
|
||||||
|
|||||||
@@ -52,7 +52,6 @@ feature -- Access
|
|||||||
p: WSF_PAGE_RESPONSE
|
p: WSF_PAGE_RESPONSE
|
||||||
l_len: INTEGER
|
l_len: INTEGER
|
||||||
dbg: WSF_DEBUG_INFORMATION
|
dbg: WSF_DEBUG_INFORMATION
|
||||||
utf: UTF_CONVERTER
|
|
||||||
do
|
do
|
||||||
create s.make (2048)
|
create s.make (2048)
|
||||||
s.append ("= EWF DEBUG =")
|
s.append ("= EWF DEBUG =")
|
||||||
|
|||||||
@@ -112,13 +112,13 @@ feature -- Execution
|
|||||||
a_output.append ("Environment vars:")
|
a_output.append ("Environment vars:")
|
||||||
a_output.append (eol)
|
a_output.append (eol)
|
||||||
across
|
across
|
||||||
(create {EXECUTION_ENVIRONMENT}).starting_environment_variables as ic
|
(create {EXECUTION_ENVIRONMENT}).starting_environment as ic
|
||||||
loop
|
loop
|
||||||
a_output.append_character (' ')
|
a_output.append_character (' ')
|
||||||
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_character ('=')
|
||||||
a_output.append_string (ic.item)
|
a_output.append_string (html_encoder.general_encoded_string (ic.item))
|
||||||
a_output.append (eol)
|
a_output.append (eol)
|
||||||
end
|
end
|
||||||
a_output.append (eol)
|
a_output.append (eol)
|
||||||
|
|||||||
Reference in New Issue
Block a user