IronPDF 中的本機例外處理
在最近版本的IronPDF中,日誌中的原生異常訊息將包含一個特定的問題代碼:[問題代碼 IRONPDF-NATIVE-EXCEPTION]. 以下顯示了此類異常消息的示例:
IronPdf.Exceptions.IronPdfNativeException: Error while generating PDF from HTML: 'Error while rendering pdf from html for job group 0: 'Error during dev tools execution: {"method":"Inspector.targetCrashed","params":{}}''.
2024-01-25 08:12:11,960 INFO [Thread-3] [, , , , , , , , ] c.i.i.i.s.Access: [IronPdfEngine]To learn how to solve this issue please read https://ironpdf.com/troubleshooting/ironpdf-native-exception [Issue Code IRONPDF-NATIVE-EXCEPTION]
可能原因
IronPDF原生異常通常源自於IronPdf.Native.Chrome包中使用的C++代碼相關的各種問題,該包是IronPDF的依賴項,涉及使用Chrome PDF渲染引擎。
解決方案
若需協助處理與原生異常相關的問題,請提交工程支援請提供完整的日誌文件以供進一步調查。
在您的專案中加入以下代碼片段,以啟用原生日誌記錄功能:
IronPdf.Logging.Logger.LogFilePath = "Default.log"; //May be set to a directory name or full file
IronPdf.Logging.Logger.LoggingMode = IronPdf.Logging.Logger.LoggingModes.All;
IronPdf.Logging.Logger.LogFilePath = "Default.log"; //May be set to a directory name or full file
IronPdf.Logging.Logger.LoggingMode = IronPdf.Logging.Logger.LoggingModes.All;
IronPdf.Logging.Logger.LogFilePath = "Default.log" 'May be set to a directory name or full file
IronPdf.Logging.Logger.LoggingMode = IronPdf.Logging.Logger.LoggingModes.All
IronPDF 創建的日誌文件通常位於您的項目的 /bin 目錄 中,也就是您部署 DLL 的地方,或者您可以設置自定義的 IronPdf.Logging.Logger.LogFilePath
,將日誌文件存儲在特定位置。 相關的日誌文件包括:
Default.log(部署、多緒處理和渲染過程。 用於觀察過程行為和異常。)