• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
3SPDX-License-Identifier: curl
4Short: v
5Long: verbose
6Mutexed: trace trace-ascii
7Help: Make the operation more talkative
8Category: important verbose
9Added: 4.0
10Multi: boolean
11Scope: global
12See-also:
13  - include
14  - silent
15  - trace
16  - trace-ascii
17Example:
18  - --verbose $URL
19---
20
21# `--verbose`
22
23Makes curl verbose during the operation. Useful for debugging and seeing
24what's going on "under the hood". A line starting with '>' means "header data"
25sent by curl, '<' means "header data" received by curl that is hidden in
26normal cases, and a line starting with '*' means additional info provided by
27curl.
28
29If you only want HTTP headers in the output, --include or --dump-header might
30be more suitable options.
31
32If you think this option still does not give you enough details, consider using
33--trace or --trace-ascii instead.
34
35Note that verbose output of curl activities and network traffic might contain
36sensitive data, including user names, credentials or secret data content. Be
37aware and be careful when sharing trace logs with others.
38