Ejemplo n.º 1
0
 def __debug(self, *args):
     entry = (datetime.now().strftime('%H:%M:%S.%f'), ) + args
     while len(self.__console) > 40:
         del self.__console[0]
     if len(self.__console) == 0 or entry[1] != self.__console[-1][1]:
         self.__console.append(entry)
     LOG_DEBUG(*args)
Ejemplo n.º 2
0
def init():
    LOG_DEBUG('init')
    g_loggerTracking.init()
Ejemplo n.º 3
0
def onAvatarBecomePlayerdef():
    LOG_DEBUG('onAvatarBecomePlayerdef')
Ejemplo n.º 4
0
def onAccountShowGUI(ctx):
    LOG_DEBUG('onAccountShowGUI', ctx)
Ejemplo n.º 5
0
def onAccountBecomePlayer():
    LOG_DEBUG('onAccountBecomePlayer')
Ejemplo n.º 6
0
def fini():
    LOG_DEBUG('fini')
    g_loggerTracking.fini()