Ejemplo n.º 1
0
 def print(*args):
     """ logging builtins.print """
     util_logging.__UTOOL_PRINT__(*args)
Ejemplo n.º 2
0
 def print(*args):
     """ logging builtins.print """
     util_logging.__UTOOL_PRINT__(*args)
Ejemplo n.º 3
0
 def print(*args):
     """ debugging logging builtins.print """
     from utool._internal.meta_util_dbg import get_caller_name
     calltag = ''.join(
         ('[caller:', get_caller_name(N=DEBUG_PRINT_N), ']'))
     util_logging.__UTOOL_PRINT__(calltag, *args)
Ejemplo n.º 4
0
 def print(*args):
     """ debugging logging builtins.print """
     from utool._internal.meta_util_dbg import get_caller_name
     calltag = ''.join(('[caller:', get_caller_name(), ']' ))
     util_logging.__UTOOL_PRINT__(calltag, *args)