mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fixed logs on lobby.
This commit is contained in:
parent
9b3712044d
commit
fbf6810c5c
@ -18,11 +18,11 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
|
|
||||||
public static bool Load()
|
public static bool Load()
|
||||||
{
|
{
|
||||||
Program.Log.Info("Loading lobby_config.ini file... ");
|
Program.Log.Info("Loading lobby_config.ini file");
|
||||||
|
|
||||||
if (!File.Exists("./lobby_config.ini"))
|
if (!File.Exists("./lobby_config.ini"))
|
||||||
{
|
{
|
||||||
Program.Log.Error("[FILE NOT FOUND]");
|
Program.Log.Error("FILE NOT FOUND!");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,8 +38,6 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
ConfigConstants.DATABASE_USERNAME = configIni.GetValue("Database", "username", "");
|
ConfigConstants.DATABASE_USERNAME = configIni.GetValue("Database", "username", "");
|
||||||
ConfigConstants.DATABASE_PASSWORD = configIni.GetValue("Database", "password", "");
|
ConfigConstants.DATABASE_PASSWORD = configIni.GetValue("Database", "password", "");
|
||||||
|
|
||||||
Program.Log.Info("[OK]");
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,9 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
TextWriterTraceListener myWriter = new TextWriterTraceListener(System.Console.Out);
|
TextWriterTraceListener myWriter = new TextWriterTraceListener(System.Console.Out);
|
||||||
Debug.Listeners.Add(myWriter);
|
Debug.Listeners.Add(myWriter);
|
||||||
#endif
|
#endif
|
||||||
Program.Log.Info("--------FFXIV 1.0 Lobby Server--------");
|
Console.ForegroundColor = ConsoleColor.Yellow;
|
||||||
|
Console.WriteLine("--------FFXIV 1.0 Lobby Server--------");
|
||||||
|
Console.ForegroundColor = ConsoleColor.Gray;
|
||||||
|
|
||||||
bool startServer = true;
|
bool startServer = true;
|
||||||
|
|
||||||
@ -28,12 +30,8 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
if (!ConfigConstants.Load())
|
if (!ConfigConstants.Load())
|
||||||
startServer = false;
|
startServer = false;
|
||||||
|
|
||||||
Assembly assem = Assembly.GetExecutingAssembly();
|
|
||||||
Version vers = assem.GetName().Version;
|
|
||||||
Program.Log.Info("Version: " + vers.ToString());
|
|
||||||
|
|
||||||
//Test DB Connection
|
//Test DB Connection
|
||||||
Program.Log.Info("Testing DB connection to \"{0}\"... ", ConfigConstants.DATABASE_HOST);
|
Program.Log.Info("Testing DB connection to \"{0}\"", ConfigConstants.DATABASE_HOST);
|
||||||
using (MySqlConnection conn = new MySqlConnection(String.Format("Server={0}; Port={1}; Database={2}; UID={3}; Password={4}", ConfigConstants.DATABASE_HOST, ConfigConstants.DATABASE_PORT, ConfigConstants.DATABASE_NAME, ConfigConstants.DATABASE_USERNAME, ConfigConstants.DATABASE_PASSWORD)))
|
using (MySqlConnection conn = new MySqlConnection(String.Format("Server={0}; Port={1}; Database={2}; UID={3}; Password={4}", ConfigConstants.DATABASE_HOST, ConfigConstants.DATABASE_PORT, ConfigConstants.DATABASE_NAME, ConfigConstants.DATABASE_USERNAME, ConfigConstants.DATABASE_PASSWORD)))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
@ -55,6 +53,7 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
{
|
{
|
||||||
Server server = new Server();
|
Server server = new Server();
|
||||||
server.StartServer();
|
server.StartServer();
|
||||||
|
while (true) Thread.Sleep(10000);
|
||||||
}
|
}
|
||||||
|
|
||||||
Program.Log.Info("Press any key to continue...");
|
Program.Log.Info("Press any key to continue...");
|
||||||
|
@ -81,7 +81,7 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
}
|
}
|
||||||
|
|
||||||
Console.ForegroundColor = ConsoleColor.White;
|
Console.ForegroundColor = ConsoleColor.White;
|
||||||
Program.Log.Debug("Lobby Server has started @ {0}:{1}", (mServerSocket.LocalEndPoint as IPEndPoint).Address, (mServerSocket.LocalEndPoint as IPEndPoint).Port);
|
Program.Log.Info("Lobby Server has started @ {0}:{1}", (mServerSocket.LocalEndPoint as IPEndPoint).Address, (mServerSocket.LocalEndPoint as IPEndPoint).Port);
|
||||||
Console.ForegroundColor = ConsoleColor.Gray;
|
Console.ForegroundColor = ConsoleColor.Gray;
|
||||||
|
|
||||||
mProcessor = new PacketProcessor();
|
mProcessor = new PacketProcessor();
|
||||||
|
@ -8,4 +8,4 @@ host=127.0.0.1
|
|||||||
port=3306
|
port=3306
|
||||||
database=ffxiv_server
|
database=ffxiv_server
|
||||||
username=root
|
username=root
|
||||||
password=root
|
password=
|
||||||
|
@ -8,4 +8,4 @@ host=127.0.0.1
|
|||||||
port=3306
|
port=3306
|
||||||
database=ffxiv_server
|
database=ffxiv_server
|
||||||
username=root
|
username=root
|
||||||
password=root
|
password=
|
||||||
|
Loading…
Reference in New Issue
Block a user