Core/Misc: Some missed $ for string interpolation and some cleanups to code.

This commit is contained in:
hondacrx
2021-01-14 20:50:44 -05:00
parent b503b842d6
commit fa689dac1e
10 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ namespace BNetServer
int restPort = ConfigMgr.GetDefaultValue("LoginREST.Port", 8081);
if (restPort < 0 || restPort > 0xFFFF)
{
Log.outError(LogFilter.Network, "Specified login service port ({restPort}) out of allowed range (1-65535), defaulting to 8081");
Log.outError(LogFilter.Network, $"Specified login service port ({restPort}) out of allowed range (1-65535), defaulting to 8081");
restPort = 8081;
}