2023-01-02 20:51:48 +08:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-06-14 06:12:03 +08:00
|
|
|
SPDX-License-Identifier: curl
|
2016-11-14 06:40:12 +08:00
|
|
|
Short: v
|
|
|
|
Long: verbose
|
|
|
|
Mutexed: trace trace-ascii
|
2016-11-15 16:08:50 +08:00
|
|
|
Help: Make the operation more talkative
|
2023-02-21 23:42:26 +08:00
|
|
|
See-also: include silent trace trace-ascii
|
2020-07-13 20:15:04 +08:00
|
|
|
Category: important verbose
|
2021-08-31 22:37:14 +08:00
|
|
|
Example: --verbose $URL
|
2021-09-28 17:50:07 +08:00
|
|
|
Added: 4.0
|
2022-10-18 16:39:43 +08:00
|
|
|
Multi: boolean
|
2023-02-21 23:42:26 +08:00
|
|
|
Scope: global
|
2016-11-14 06:40:12 +08:00
|
|
|
---
|
|
|
|
Makes curl verbose during the operation. Useful for debugging and seeing
|
|
|
|
what's going on "under the hood". A line starting with '>' means "header data"
|
|
|
|
sent by curl, '<' means "header data" received by curl that is hidden in
|
|
|
|
normal cases, and a line starting with '*' means additional info provided by
|
|
|
|
curl.
|
|
|
|
|
2023-02-21 23:42:26 +08:00
|
|
|
If you only want HTTP headers in the output, --include or --dump-header might
|
|
|
|
be more suitable options.
|
2016-11-14 06:40:12 +08:00
|
|
|
|
2021-10-31 23:34:44 +08:00
|
|
|
If you think this option still does not give you enough details, consider using
|
2016-11-14 06:40:12 +08:00
|
|
|
--trace or --trace-ascii instead.
|
2023-08-04 22:07:16 +08:00
|
|
|
|
|
|
|
Note that verbose output of curl activities and network traffic might contain
|
|
|
|
sensitive data, including user names, credentials or secret data content. Be
|
|
|
|
aware and be careful when sharing trace logs with others.
|