你能幫我嗎,什麼是錯的。
Python日誌記錄類型錯誤
import logging if (__name__ == "__main__"): logging.basicConfig(format='[%(asctime)s] %(levelname)s::%(module)s::%(funcName)s() %(message)s', level=logging.DEBUG) logging.INFO("test")
我不能運行它,我得到了一個錯誤:
Traceback (most recent call last): File "/home/htfuws/Programming/Python/just-kidding/main.py", line 5, in logging.INFO("test") TypeError: 'int' object is not callable
非常感謝你。
這是整個代碼? – Matt