是否可以將* args傳遞給string.format?我有以下功能:在Python中將* args傳遞給string.format?
@classmethod
def info(cls, component, msg, *args):
"""Log an info message"""
cls.__log(cls.Level.INFO, component, msg, args)
@classmethod
def __log(cls, level, component, msg, *args):
"""Log a message at the requested level"""
logging.getLogger("local").log(level, " - ".join([component, msg.format(args)]))
當我試圖單元測試與LogCapture我得到如下:
def test_logWithArgs(self):
Logger.level(Logger.Level.INFO)
with LogCapture(level=Logger.Level.INFO) as lc:
Logger.info("MyComponent", "{0}", "TestArg")
lc.check(("local", "INFO", "MyComponent - TestArg"))
AssertionError: Sequence not as expected:
same:
()
first:
(('local', 'INFO', 'MyComponent - TestArg'),)
second:
(('local', 'INFO', "MyComponent - (('TestArg',),)"),)
我覺得你有你的答案 - 但我要請您看看logging.Formatter設施 –