set the messaging level for SIP routines
suppress vebose messages
enable verbose messages
the current verbose mode
old_mode = sip_set_verbose([mode_string]) old_mode = sip_quiet() old_mode = sip_wordy() mode = sip_get_verbose()
'wordy'
or 'quiet'
.
If omitted, defaults to the opposite of the previous mode.sip_set_verbose('quiet')
or simply
sip_quiet()
prevents helper messages
from being issued by SIP functions such as imread, mogrify, and
others. It is useful when one wants to use those functions
inside a loop, for example.
sip_set_verbose('wordy')
or simply
sip_wordy()
causes helper messages
to be issued by SIP functions such as imread, mogrify, and
others. It is useful for debugging and for interactive usage.
sip_set_verbose()
toggles/inverts the current mode.
The output is always the PREVIOUS verbose mode.