Jump to Section

Umbraco LogViewer - Unable to parse a line in the JSON log file error
What Causes the Error?#
The root of the problem lies in a breaking change introduced in Newtonsoft.Json v13.0.1, which sets a default maximum depth for JSON deserialization:

JsonSerializerSettings internal const int DefaultMaxDepth = 64;
This limitation impacts Umbraco’s LogViewer when processing deeply nested JSON, triggering the following exception:
You can compare all Newtonsoft.Json releases here:

Newtonsoft.Json JsonSerializerSettings DefaultMaxDepth is 64
As you can see, version Newtonsoft.Json 13.0.1 introduces a breaking change that affects the Umbraco log viewer panel when getting logs.
The Fix: Modify MaxDepth in JsonSerializerSettings#
The solution involves adjusting the maximum depth for JSON deserialization in the Umbraco project.
Here’s how you can fix this issue.
Step 1: Update the Log Viewer Code
In the SerilogJsonLogViewer class, modify the JSON serializer settings to allow a higher MaxDepth value.
For example:
This change increases the maximum depth to 128, ensuring that your log files are processed correctly.
Step 2: Improved Error Handling
To make logging system more robust, implement enhanced error handling in the TryRead method.
Here’s an example:
Wrapping up SerilogJsonLogViewer.cs#
Here is the full SerilogJsonLogViewer class with better error handling and increased MaxDepth when reading JSON:
Key Insights on Serialization and Error Handling#
Serialization
- GetJsonSerializerSettings() provides control over JSON parsing.
- DateParseHandling.None: Prevents automatic date conversion, preserving raw date formats.
- MaxDepth = 128: This limit on deserialization depth prevents potential stack overflow or excessive resource consumption from deeply nested JSON.
- JsonSerializer.Create(serializerSettings) creates a reusable serializer instance, avoiding repeated initialization overhead during log processing.
Error Handling
- Catches specific JSON-related exceptions (JsonReaderException and JsonSerializationException) to log meaningful error messages based on the nature of the issue (e.g., malformed JSON or deserialization failures).
- Logs the exact exception type and message for better diagnostic insights.
- All log messages include critical context, like the file path, to quickly identify the source of the issue.
Learn More#
Current Umbraco 13.5.2 SerilogJsonLogViewer.cs implementation https://github.com/umbraco/Umbraco-CMS/blob/release-13.5.2/src/Umbraco.Infrastructure/Logging/Viewer/SerilogJsonLogViewer.cs
The issue was raised on GitHub: https://github.com/umbraco/Umbraco-CMS/issues/17629
Pull request with the fix: https://github.com/umbraco/Umbraco-CMS/pull/17630
What's Next?
Explore our blog for more insights, and feel free to reach out for any queries or discussions related to Umbraco development.