1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: trace-config 5Arg: <string> 6Help: Details to log in trace/verbose output 7Mutexed: trace verbose 8Category: verbose 9Added: 8.3.0 10Multi: append 11Scope: global 12See-also: 13 - verbose 14 - trace 15Example: 16 - --trace-config ids,http/2 $URL 17--- 18 19# `--trace-config` 20 21Set configuration for trace output. A comma-separated list of components where 22detailed output can be made available from. Names are case-insensitive. 23Specify 'all' to enable all trace components. 24 25In addition to trace component names, specify "ids" and "time" to 26avoid extra --trace-ids or --trace-time parameters. 27 28See the *curl_global_trace(3)* man page for more details. 29