Clarify plugin verbosity docs (taken from sampsyo/thread-safe-logging)

This commit is contained in:
Adrian Sampson 2015-03-21 00:01:14 -04:00 committed by Bruno Cauet
parent 998d04d3eb
commit 127b92598c

View file

@ -489,8 +489,10 @@ name to make them easier to see.
What messages will be logged depends on the logging level and the action
performed:
* On import stages and event, the default is ``WARNING`` messages.
* On direct actions, the default is ``INFO`` and ``WARNING`` message.
* On import stages and event handlers, the default is ``WARNING`` messages and
above.
* On direct actions, the default is ``INFO`` or above, as with the rest of
beets.
The verbosity can be increased with ``--verbose`` flags: each flags lowers the
level by a notch.
@ -500,4 +502,3 @@ command and an import stage, but the command needs to print more messages than
the import stage. (For example, you'll want to log "found lyrics for this song"
when you're run explicitly as a command, but you don't want to noisily
interrupt the importer interface when running automatically.)