0
我應該在調試時在Eclipse上看到日誌輸出?當跑步?Eclipse上的Python日誌模塊
我應該在調試時在Eclipse上看到日誌輸出?當跑步?Eclipse上的Python日誌模塊
這取決於你如何配置你的日誌系統。如果只使用print語句,則應該在eclipse的console
視圖中顯示。
如果您使用logging
並且您配置了控制檯處理程序,它也應該顯示在console
eclipse視圖中。 如果只配置文件中的日誌配置處理程序,你必須尾日誌文件;)
這裏是爲我工作的例子:
# LOG
log = logging.getLogger("appname")
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
fmt = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(fmt)
log.addHandler(ch)
log.debug("something happened") # Will print on console '2013-01-26 12:58:28,974 - appname - DEBUG - something happened'