mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-07 11:41:54 -05:00
13 lines
376 B
Markdown
13 lines
376 B
Markdown
|
The `verbosef` performs `printf`, printing a formatted string, but only when the **verbose** flag was set (ex. in the command line).
|
||
|
|
||
|
```lua
|
||
|
verbosef("format", ...)
|
||
|
```
|
||
|
|
||
|
## Parameters ##
|
||
|
|
||
|
**format** is a formatting string containing C `printf()` style formatting codes. It is followed by a list of arguments to be substituted into the format string.
|
||
|
|
||
|
## Return Value ##
|
||
|
|
||
|
None.
|