fix: logger args
This commit is contained in:
@@ -3,16 +3,16 @@ from apify import Actor
|
|||||||
|
|
||||||
class Logger:
|
class Logger:
|
||||||
def info(self, msg: object, *args: object):
|
def info(self, msg: object, *args: object):
|
||||||
Actor.log.info(msg, args)
|
Actor.log.info(msg, *args)
|
||||||
|
|
||||||
def debug(self, msg: object, *args: object):
|
def debug(self, msg: object, *args: object):
|
||||||
Actor.log.debug(msg, args)
|
Actor.log.debug(msg, *args)
|
||||||
|
|
||||||
def error(self, msg: object, *args: object):
|
def error(self, msg: object, *args: object):
|
||||||
Actor.log.error(msg, args)
|
Actor.log.error(msg, *args)
|
||||||
|
|
||||||
def fatal(self, msg: object, *args: object):
|
def fatal(self, msg: object, *args: object):
|
||||||
Actor.log.fatal(msg, args)
|
Actor.log.fatal(msg, *args)
|
||||||
|
|
||||||
def warn(self, msg: object, *args: object):
|
def warn(self, msg: object, *args: object):
|
||||||
Actor.log.warning(msg, args)
|
Actor.log.warning(msg, *args)
|
||||||
|
|||||||
Reference in New Issue
Block a user