verbose.d 934 B

12345678910111213141516171819202122232425262728
  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. If you only want HTTP headers in the output, --include might be the option
  19. you are looking for.
  20. If you think this option still does not give you enough details, consider using
  21. --trace or --trace-ascii instead.
  22. This option is global and does not need to be specified for each use of
  23. --next.
  24. Use --silent to make curl really quiet.