xf.li | 6c8fc1e | 2023-08-12 00:11:09 -0700 | [diff] [blame^] | 1 | c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al. |
| 2 | SPDX-License-Identifier: curl |
| 3 | Short: v |
| 4 | Long: verbose |
| 5 | Mutexed: trace trace-ascii |
| 6 | Help: Make the operation more talkative |
| 7 | See-also: include |
| 8 | Category: important verbose |
| 9 | Example: --verbose $URL |
| 10 | Added: 4.0 |
| 11 | Multi: boolean |
| 12 | --- |
| 13 | Makes curl verbose during the operation. Useful for debugging and seeing |
| 14 | what's going on "under the hood". A line starting with '>' means "header data" |
| 15 | sent by curl, '<' means "header data" received by curl that is hidden in |
| 16 | normal cases, and a line starting with '*' means additional info provided by |
| 17 | curl. |
| 18 | |
| 19 | If you only want HTTP headers in the output, --include might be the option |
| 20 | you are looking for. |
| 21 | |
| 22 | If you think this option still does not give you enough details, consider using |
| 23 | --trace or --trace-ascii instead. |
| 24 | |
| 25 | This option is global and does not need to be specified for each use of |
| 26 | --next. |
| 27 | |
| 28 | Use --silent to make curl really quiet. |