>Synopsis: iked allows for levels of debug and verbosity that is undocumented >in iked(8) >Category: bin >Description: Currently, iked(8) does not document that the -d and -v flags can be specified multiple times. >Fix: Replace the iked(8) man text of ```txt -d Do not daemonize and log to stderr. -v Produce more verbose output. ``` with ```txt -d Do not daemonize and log to stderr. Can be specified up to 3 times to increase debug level. -v Produce more verbose output. Can be specified up to 3 times to increase verbosity level. Level 2 or higher enables debug message output when combined with -d. ``` This change clarifies that: 1. Both flags can be given multiple times 2. There are maximum levels for each flag 3. The relationship between verbosity level and debug messages 4. The connection between -d and -v flags This will help users better understand how to control the debug/logging output and avoid confusion about why debug messages may not appear with just -v -d.