add_logger(logger=' root ' ,
name_re=' ^(gl|glu|glut|glX)[A-Z].*$ ' ,
d=None)
| source code
|
Add a logger to OpenGL functions.
All values in d that match name_re have an
errcheck attribute will be replaced by corresponding LoggingWrappers that call logger before
each invocation. By default, d is
glitter.raw.__dict__ .
logger may be either a callable, a
logging.logger object, the name of a registered
logging.Logger object, or None to remove the
logger.
Attention:
If you add multiple loggers to a function, you will not only incur
a double performance penalty, but also have to remove them in the
reverse order; there is no way to remove a specific logger.
|