def e(text=""):
     #ERROR
     LogConfig.init()
     if LogConfig.level() >= LOG_LEVEL_ERROR:
         callframe = _getframe(1)
         Log._log(LOG_TYPE_ERROR, text, callframe)
 def i(text=""):
     #INFO
     LogConfig.init()
     if LogConfig.level() >= LOG_LEVEL_INFO:
         callframe = _getframe(1)
         Log._log(LOG_TYPE_INFO, text, callframe)
 def d(text=""):
     #DEBUG
     LogConfig.init()
     if LogConfig.level() >= LOG_LEVEL_DEBUG:
         callframe = _getframe(1)
         Log._log(LOG_TYPE_DEBUG, text, callframe)
 def w(text=""):
     #WARNING
     LogConfig.init()
     if LogConfig.level() >= LOG_LEVEL_WARNING:
         callframe = _getframe(1)
         Log._log(LOG_TYPE_WARNING, text, callframe)