1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

optimize index for rating history

update log server to prevent delays or missed information
This commit is contained in:
RaidMax
2019-07-24 19:15:07 -05:00
parent 99a163fa2b
commit d6a5c27c60
17 changed files with 904 additions and 97 deletions

View File

@ -4,6 +4,7 @@ using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace IW4MAdmin.Application
{
@ -54,9 +55,9 @@ namespace IW4MAdmin.Application
}
}
void Write(string msg, LogType type)
async Task Write(string msg, LogType type)
{
OnLogWriting.Wait();
await OnLogWriting.WaitAsync();
string stringType = type.ToString();
@ -73,14 +74,14 @@ namespace IW4MAdmin.Application
#if DEBUG
// lets keep it simple and dispose of everything quickly as logging wont be that much (relatively)
Console.WriteLine(LogLine);
File.AppendAllText(FileName, LogLine + Environment.NewLine);
Debug.WriteLine(msg);
await File.AppendAllTextAsync(FileName, $"{LogLine}{Environment.NewLine}");
//Debug.WriteLine(msg);
#else
if (type == LogType.Error || type == LogType.Verbose)
{
Console.WriteLine(LogLine);
}
File.AppendAllText(FileName, $"{LogLine}{Environment.NewLine}");
await File.AppendAllTextAsync(FileName, $"{LogLine}{Environment.NewLine}");
#endif
}