mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
f06cc4f85e
- added and documented --trace-ids to prepend (after the timestamp) the transfer and connection identifiers to each verbose log line - format is [n-m] with `n` being the transfer id and `m` being the connection id. In case there is not valid connection id, print 'x'. - Log calls with a handle that has no transfer id yet, are written without any ids. Closes #11185
18 lines
544 B
Makefile
18 lines
544 B
Makefile
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Long: trace
|
|
Arg: <file>
|
|
Help: Write a debug trace to FILE
|
|
Mutexed: verbose trace-ascii
|
|
Category: verbose
|
|
Example: --trace log.txt $URL
|
|
Added: 7.9.7
|
|
See-also: trace-ascii trace-ids trace-time
|
|
Multi: single
|
|
Scope: global
|
|
---
|
|
Enables a full trace dump of all incoming and outgoing data, including
|
|
descriptive information, to the given output file. Use "-" as filename to have
|
|
the output sent to stdout. Use "%" as filename to have the output sent to
|
|
stderr.
|