digraph inheritance3bdaa9851d {
bgcolor=transparent;
rankdir=UD;
ratio=compress;
size="8.0, 12.0";
"InfoIt" [color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,tooltip="Specialization of LogIt for info level messages."];
"LogIt" -> "InfoIt" [arrowsize=0.5,style="setlinewidth(0.5)"];
"LogIt" [color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,tooltip="A function designed to be a decorator of any method of a Logger subclass."];
}
-
class
InfoIt
(showargs=False, showret=False)[source]
Bases: taurus.core.util.log.LogIt
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"