1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

fixes for things that should have been in the previous release

console output reenabled
server start task actually runs
This commit is contained in:
RaidMax
2019-05-09 20:00:00 -05:00
parent b14a5ced52
commit 12785d68ac
4 changed files with 15 additions and 9 deletions

View File

@ -1,12 +1,12 @@
using SharedLibraryCore;
using SharedLibraryCore.Interfaces;
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
namespace IW4MAdmin.Application
{
class Logger : SharedLibraryCore.Interfaces.ILogger
class Logger : ILogger
{
enum LogType
{
@ -55,7 +55,6 @@ namespace IW4MAdmin.Application
void Write(string msg, LogType type)
{
return;
OnLogWriting.Wait();
string stringType = type.ToString();