TraceIt
digraph inheritanced0fbf524e0 {
bgcolor=transparent;
rankdir=UD;
ratio=compress;
size="8.0, 12.0";
"LogIt" [URL="taurus.core.util.log-LogIt.html#taurus.core.util.log.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,target="_top",tooltip="A function designed to be a decorator of any method of a Logger"];
"TraceIt" [URL="#taurus.core.util.log.TraceIt",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,target="_top",tooltip="Specialization of LogIt for trace level messages."];
"LogIt" -> "TraceIt" [arrowsize=0.5,style="setlinewidth(0.5)"];
}
- class TraceIt(showargs=False, showret=False)[source]
Specialization of LogIt for trace level messages. Example:
from taurus.core.util.log import Logger, TraceIt class Example(Logger): @TraceIt() def go(self): print("Hello world")
See also
Import from
taurus.core.util.log
as:from taurus.core.util.log import TraceIt