Change converter log level (#4916)

Change converter log level
pull/4920/head
Bond-009 4 years ago committed by GitHub
commit 9265dd68a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,7 +69,7 @@ namespace Jellyfin.Api.ModelBinders
}
catch (FormatException e)
{
_logger.LogWarning(e, "Error converting value.");
_logger.LogDebug(e, "Error converting value.");
}
}

@ -37,7 +37,7 @@ namespace Jellyfin.Api.ModelBinders
}
catch (FormatException e)
{
_logger.LogWarning(e, "Error converting value.");
_logger.LogDebug(e, "Error converting value.");
}
}

@ -69,7 +69,7 @@ namespace Jellyfin.Api.ModelBinders
}
catch (FormatException e)
{
_logger.LogWarning(e, "Error converting value.");
_logger.LogDebug(e, "Error converting value.");
}
}

@ -45,7 +45,7 @@ namespace MediaBrowser.Common.Json.Converters
{
// TODO log when upgraded to .Net6
// https://github.com/dotnet/runtime/issues/42975
// _logger.LogWarning(e, "Error converting value.");
// _logger.LogDebug(e, "Error converting value.");
}
}

@ -45,7 +45,7 @@ namespace MediaBrowser.Common.Json.Converters
{
// TODO log when upgraded to .Net6
// https://github.com/dotnet/runtime/issues/42975
// _logger.LogWarning(e, "Error converting value.");
// _logger.LogDebug(e, "Error converting value.");
}
}

Loading…
Cancel
Save