捕獲和處理異常對於 Python 中的錯誤處理至關重要。但是,如果未捕獲的異常會列印到標準錯誤輸出 (stderr),該怎麼辦?
雖然總是建議明確捕獲和處理異常,但有時可能會方便自動記錄未捕獲的異常。以下解決方案不依賴try/ except 區塊,而是允許自動進行日誌記錄:
<code class="python">import sys import logging # Create a custom exception handler def handle_exception(exc_type, exc_value, exc_traceback): if issubclass(exc_type, KeyboardInterrupt): sys.__excepthook__(exc_type, exc_value, exc_traceback) return # Use the logging module to handle the uncaught exception logger = logging.getLogger(__name__) logger.error("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback)) # Replace the default exception handler with our custom one sys.excepthook = handle_exception # Set up a logger and handler logger = logging.getLogger(__name__) handler = logging.StreamHandler(stream=sys.stdout) logger.addHandler(handler) # Raise an exception to test the custom exception handling if __name__ == "__main__": raise RuntimeError("Test unhandled")</code>
此程式碼完成多項任務:
透過自動記錄未捕獲的異常,此方法簡化了錯誤處理,並提供了一個中心位置來檢查程式執行期間發生的所有異常,無論它們是否被捕獲.
以上是如何在 Python 中自動記錄未捕獲的異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!