Previous topic

medpy.core.logger.Logger.hasHandlers

Next topic

medpy.core.logger.Logger.isEnabledFor

This Page

medpy.core.logger.Logger.info

Logger.info(msg, *args, **kwargs)[source]

Log ‘msg % args’ with severity ‘INFO’.

To pass exception information, use the keyword argument exc_info with a true value, e.g.

logger.info(“Houston, we have a %s”, “interesting problem”, exc_info=1)