ascnet/AscNet/Program.cs

27 lines
785 B
C#
Raw Normal View History

2023-11-13 12:10:02 +00:00
using AscNet.GameServer;
using AscNet.GameServer.Commands;
using AscNet.Logging;
2023-10-06 13:29:27 +00:00
namespace AscNet
{
internal class Program
{
static void Main(string[] args)
{
2023-11-13 12:10:02 +00:00
// TODO: Add LogLevel parsing from appsettings file
LoggerFactory.InitializeLogger(new Logger(typeof(Program), LogLevel.DEBUG, LogLevel.DEBUG));
LoggerFactory.Logger.Info("Starting...");
2023-11-11 07:28:21 +00:00
2023-10-14 15:01:49 +00:00
#if DEBUG
if (Common.Common.config.VerboseLevel < Common.VerboseLevel.Debug)
Common.Common.config.VerboseLevel = Common.VerboseLevel.Debug;
#endif
2023-10-10 09:56:08 +00:00
PacketFactory.LoadPacketHandlers();
2023-11-13 12:10:02 +00:00
CommandFactory.LoadCommands();
Task.Run(Server.Instance.Start);
2023-10-06 13:29:27 +00:00
SDKServer.SDKServer.Main(args);
}
}
}