- Browse to your Jellyfin config folder
- Make a backup copy of
config/logging.default.json
before editing it - Open
config/logging.default.json
with a text editor. The top lines should look something like this:
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
// rest of file ommited for brevity
}
}
- Inside the
Override
section, add a new entry forConfusedPolarBear
and set it toDebug
. The modified file should now look like this:
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning", // be sure to add the trailing comma after "Warning",
"ConfusedPolarBear": "Debug" // newly added line
}
},
// rest of file ommited for brevity
}
}
- Save the file and restart Jellyfin
To enable verbose log messages, set the log level to Verbose
instead of Debug
in step 4.