InfoIt

Inheritance diagram of InfoIt
class InfoIt(showargs=False, showret=False)[source]

Specialization of LogIt for info level messages. Example:

from taurus.core.util.log import Logger, InfoIt
class Example(Logger):

    @InfoIt()
    def go(self):
        print("Hello world")

See also

LogIt

Import from taurus.core.util.log as:

from taurus.core.util.log import InfoIt