MCPcopy Index your code
hub / github.com/pyload/pyload / logError

Method logError

module/plugins/Plugin.py:84–85  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

82 self.log.warning("%s: %s" % (self.__name__, " | ".join([a if isinstance(a, basestring) else str(a) for a in args])))
83
84 def logError(self, *args):
85 self.log.error("%s: %s" % (self.__name__, " | ".join([a if isinstance(a, basestring) else str(a) for a in args])))
86
87 def logDebug(self, *args):
88 self.log.debug("%s: %s" % (self.__name__, " | ".join([a if isinstance(a, basestring) else str(a) for a in args])))

Callers

nothing calls this directly

Calls 2

joinMethod · 0.80
errorMethod · 0.45

Tested by

no test coverage detected