2024-09-26, 08:26 PM
You can edit logging.default.json. I don't know which OS your server is running but here are the common locations.
Linux: /etc/jellyfin/
Docker: /config/config/
Windows: C:\ProgramData\Jellyfin\Server\config
Edit the top section to look like this.
Replace "Information" and "Warning" with "Debug". Once you save the file the change in log level should immediately take effect. No need to restart.
Linux: /etc/jellyfin/
Docker: /config/config/
Windows: C:\ProgramData\Jellyfin\Server\config
Edit the top section to look like this.
Code:
{
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Debug",
"System": "Debug"
}
},
Replace "Information" and "Warning" with "Debug". Once you save the file the change in log level should immediately take effect. No need to restart.