hurl/integration/tests_ok/delay_option.err.pattern
Guilherme Puida ff366b581e
Log only non-default options in verbose mode
This patch alters the logging of options to only display non-default
options when running with --verbose. The behavior of --very-verbose
is not affected.

This commit also fixes all integration tests that were broken with
the change to the logger output.
2023-09-27 20:14:41 -03:00

61 lines
1.1 KiB
Plaintext

* Options:
* ------------------------------------------------------------------------------
* Executing entry 1
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/delay-init
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/delay-init'
*
> GET /delay-init HTTP/1.1
> Host: localhost:8000
> Accept: */*
> User-Agent: hurl/~~~
>
* Response: (received 0 bytes in ~~~ ms)
*
< HTTP/1.1 200 OK
< Server: ~~~
< Date: ~~~
< Content-Type: text/html; charset=utf-8
< Content-Length: 0
< Server: Flask Server
< Connection: close
<
*
* ------------------------------------------------------------------------------
* Executing entry 2
*
* Entry options:
* delay: 1000
*
* Delay entry 2 (x1 by 1000 ms)
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/delay
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/delay'
*
> GET /delay HTTP/1.1
> Host: localhost:8000
> Accept: */*
> User-Agent: hurl/~~~
>
* Response: (received 0 bytes in ~~~ ms)
*
< HTTP/1.1 200 OK
< Server: ~~~
< Date: ~~~
< Content-Type: text/html; charset=utf-8
< Content-Length: 0
< Server: Flask Server
< Connection: close
<
*