master-server/deps/curl/docs/cmdline-opts/verbose.md

37 lines
1.1 KiB
Markdown
Raw Normal View History

2024-05-15 15:20:32 -04:00
---
2023-12-11 20:30:44 -05:00
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
SPDX-License-Identifier: curl
Short: v
Long: verbose
Mutexed: trace trace-ascii
Help: Make the operation more talkative
Category: important verbose
Added: 4.0
Multi: boolean
Scope: global
2024-05-15 15:20:32 -04:00
See-also:
- include
- silent
- trace
- trace-ascii
Example:
- --verbose $URL
2023-12-11 20:30:44 -05:00
---
2024-05-15 15:20:32 -04:00
# `--verbose`
2023-12-11 20:30:44 -05:00
Makes curl verbose during the operation. Useful for debugging and seeing
2024-05-15 15:20:32 -04:00
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-12-11 20:30:44 -05:00
If you only want HTTP headers in the output, --include or --dump-header might
be more suitable options.
If you think this option still does not give you enough details, consider using
--trace or --trace-ascii instead.
Note that verbose output of curl activities and network traffic might contain
2024-05-15 15:20:32 -04:00
sensitive data, including usernames, credentials or secret data content. Be
2023-12-11 20:30:44 -05:00
aware and be careful when sharing trace logs with others.