From: Kevin Day Date: Tue, 17 Jan 2023 04:21:50 +0000 (-0600) Subject: Update: The directory documentation comments. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=5b4699cb8fdb15d2fda03ec032c515a3bab16782;p=fll Update: The directory documentation comments. --- diff --git a/level_0/f_console/c/console/common.h b/level_0/f_console/c/console/common.h index 037c1b3..fa31c0a 100644 --- a/level_0/f_console/c/console/common.h +++ b/level_0/f_console/c/console/common.h @@ -360,15 +360,16 @@ extern "C" { * Provide the standard verbosity codes. * * Intended to be used for the basic/standard verbosity modes for all programs following this practice. + * The options are subjective in interpretation of the verbosity but are expected to be follow the general interpretation. * * These are expected to be in numeric order such that the smallest number is the least verbose and the highest number is the most verbose. * * f_console_verbosity_*: - * - quiet: Verbosity is set to quiet. - * - error: Verbosity is set to error. - * - normal: Verbosity is set to normal. - * - verbose: Verbosity is set to verbose. - * - debug: Verbosity is set to debug. + * - quiet: Verbosity is set to quiet; decrease verbosity, print less, in some use cases this could mean printing nothing. + * - error: Verbosity is set to error; similar to quiet, except that error messages are printed (this is less verbose than "normal"). + * - normal: Verbosity is set to normal; use normal printing (don't use debug/quiet/verbose). + * - verbose: Verbosity is set to verbose; increase verbosity, print more, in some use cases this could mean printing just about everything. + * - debug: Verbosity is set to debug; enable debugging, which will likely increase output verbosity. */ #ifndef _di_f_console_verbosity_ enum {