added back the server call home

This commit is contained in:
Brett Hewitson 2021-12-20 12:14:19 +10:00
parent 93d273c133
commit fc6f309178
11 changed files with 152 additions and 6 deletions

View file

@ -2109,7 +2109,11 @@ namespace ServerManagerTool.Lib
private static Logger GetLogger(string logFilePath, string logType, string logName)
{
#if DEBUG
return GetLogger(logFilePath, logType, logName ?? string.Empty, LogLevel.Debug, LogLevel.Fatal);
#else
return GetLogger(logFilePath, logType, logName ?? string.Empty, LogLevel.Info, LogLevel.Fatal);
#endif
}
private static Logger GetLogger(string logFilePath, string logType, string logName, LogLevel minLevel, LogLevel maxLevel)