From a653606e8ca31517d0a69a725ad53d3bd7a8c9bf Mon Sep 17 00:00:00 2001 From: Louis M Date: Mon, 30 Apr 2018 22:25:23 -0400 Subject: [PATCH] Loggin output should be open_write and not open_read --- library/server/wsf/router/filter/wsf_logging_filter.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/server/wsf/router/filter/wsf_logging_filter.e b/library/server/wsf/router/filter/wsf_logging_filter.e index 23b5db9a..8d8b6f62 100644 --- a/library/server/wsf/router/filter/wsf_logging_filter.e +++ b/library/server/wsf/router/filter/wsf_logging_filter.e @@ -28,7 +28,7 @@ feature {NONE} -- Initialization make_with_output (a_output: like output) -- Create Current with `a_output' as `output' require - a_output_opened: a_output.is_open_read + a_output_opened: a_output.is_open_write do default_create output := a_output