Browse Source

Merge pull request #913 from Bond-009/log

Reduce log spam
Vasily 6 years ago
parent
commit
395072239d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/ApplicationHost.cs

+ 1 - 1
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)