소스 검색

Merge pull request #5342 from BaronGreenback/errorMessageCorrection

Corrected logging message

(cherry picked from commit 1f0bbe266c2af4dae09ee4ecb8fd7efaabd99176)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Bond-009 4 년 전
부모
커밋
b99db64f8f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Jellyfin.Server/Program.cs

+ 1 - 1
Jellyfin.Server/Program.cs

@@ -198,7 +198,7 @@ namespace Jellyfin.Server
                 }
                 catch
                 {
-                    _logger.LogError("Kestrel failed to start! This is most likely due to an invalid address or port bind - correct your bind configuration in system.xml and try again.");
+                    _logger.LogError("Kestrel failed to start! This is most likely due to an invalid address or port bind - correct your bind configuration in network.xml and try again.");
                     throw;
                 }