diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-03-02 03:07:45 +0100 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2021-03-06 14:26:41 -0500 |
| commit | b99db64f8fb517d19d2249eb8ccb62589518a934 (patch) | |
| tree | e698f11b930a8c4725ff67310a2cace12571baec | |
| parent | 20810eedbe0c4fdd9f1ea443ea1d196697e5d2e1 (diff) | |
Merge pull request #5342 from BaronGreenback/errorMessageCorrection
Corrected logging message
(cherry picked from commit 1f0bbe266c2af4dae09ee4ecb8fd7efaabd99176)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
| -rw-r--r-- | Jellyfin.Server/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs index a1a7a3053..e19028f9f 100644 --- a/Jellyfin.Server/Program.cs +++ b/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; } |
