Change log level for converters

This commit is contained in:
crobibero 2021-01-01 09:34:39 -07:00
parent 406ae3e43a
commit 1b894798b1
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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