------------------
* LOG001: Avoid detecting inside function definitions when using ``Logger`` directly.
* Add rule LOG005 that recomends ``exception()`` over ``error()`` within ``except`` clauses.
* Add rule LOG006 that detects redundant ``exc_info`` arguments in calls to ``exception()``.
* Add rule LOG007 that detects ``exception()`` calls with falsy ``exc_info`` arguments, which are better written as ``error()``.
* Add rule LOG008 that detects calls to the deprecated, undocumented ``warn()`` method.