|
function vprint in split format
|
= NAME =
vprint
|
|
= SYNOPSIS =
* vprint "message"
|
|
= DESCRIPTION =
This function outputs the message, if the log level is set to 'verbose'
or 'debug' for the current area of Fuego test execution. This function
should be used to output additional information that might be helpful for
the user to see about the test execution. These messages, however, do
not appear by default (since the default log level is 'info').
|
See FUEGO_LOGLEVELS to see how the log level may be set.
|
See [[FUEGO_LOGLEVELS]] to see how the log level may be set.
|
Any shell variable can be output as part of the message.
|
Any shell variable can be output as part of the message.
|
|
= EXAMPLES =
Here is a sample invocation:
{{{#!YellowBox
vprint "Just completed step 'foo'."
}}}
|
|
= ENVIRONMENT and ARGUMENTS =
This function is controlled by the value of FUEGO_LOGLEVELS.
|
|
= RETURN =
Returns 0
|
|
= SOURCE =
Located in ''scripts/common.sh''
|
dprint, iprint, wprint, eprint
|
= SEE ALSO =
* [[function_dprint|dprint]], [[function_iprint|iprint]], [[function_wprint|wprint]], [[function_eprint|eprint]]
|
|
|