futile.logger (version 1.4.3)

flog.remove: Remove a logger

Description

In the event that you no longer wish to have a logger registered, use this function to remove it. Then any references to this logger will inherit the next available logger in the hierarchy.

Arguments

name
The logger name to use

Usage

# Remove a logger flog.remove(name)

Examples

Run this code
flog.threshold(ERROR, name='my.logger')
flog.info("Won't print", name='my.logger')
flog.remove('my.logger')
flog.info("Will print", name='my.logger')

Run the code above in your browser using DataLab