소스 검색

set EnableAnonymousUsageReporting to false to avoid log spam (#348)

It's the default value for the setting, so it'll only affect new servers. If enabled, it'll send usage statistics to an endpoint that doesn't exist, which just clutters the console/logs.
Claus Vium 6 년 전
부모
커밋
cff0ece073
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.Model/Configuration/ServerConfiguration.cs

+ 1 - 1
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -221,7 +221,7 @@ namespace MediaBrowser.Model.Configuration
             HttpsPortNumber = DefaultHttpsPort;
             EnableHttps = true;
             EnableDashboardResponseCaching = true;
-            EnableAnonymousUsageReporting = true;
+            EnableAnonymousUsageReporting = false;
             EnableCaseSensitiveItemIds = true;
 
             EnableAutomaticRestart = true;