aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-02-18 14:50:53 +0300
committerGitHub <noreply@github.com>2019-02-18 14:50:53 +0300
commit395072239d329d1deb1af6c57a7961cfada5fc24 (patch)
tree3d98cfc6e3a0410dd11ab2f1ef3296055acf4bc4
parente2f6ecaef60f97eb3fa72878ddb26fe73522d865 (diff)
parenta9934206761251a58d95c590bb87c9b0177e6754 (diff)
Merge pull request #913 from Bond-009/log
Reduce log spam
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index ec7d074fa..ae020826d 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -471,7 +471,7 @@ namespace Emby.Server.Implementations
{
try
{
- Logger.LogWarning("Creating instance of {Type}", type);
+ Logger.LogDebug("Creating instance of {Type}", type);
return ActivatorUtilities.CreateInstance(_serviceProvider, type);
}
catch (Exception ex)