mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-20 01:11:40 +03:00
ff366b581e
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.
61 lines
1.1 KiB
Plaintext
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
|
|
<
|
|
*
|