diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-01 23:14:27 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-01 23:14:27 +0900 |
| commit | 7df6f8d54e4d7eb8efd261b9ce5138c3efa9a364 (patch) | |
| tree | 146c76ce1c21b55e1ebc879240b9c06c00b0f997 | |
| parent | afe9ed977b9b1fe83cb0132ddf753040a4bb95e3 (diff) | |
update error message
Co-Authored-By: Bond-009 <bond.009@outlook.com>
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 72e4e151e..0bba19f2a 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -1684,7 +1684,7 @@ namespace Emby.Server.Implementations.Session } catch (Exception ex) { - _logger.LogError("Error getting image information for {0}", ex, type); + _logger.LogError(ex, "Error getting image information for {Type}", type); return null; } } |
