Fixed logs on map.

This commit is contained in:
Filip Maj 2016-06-15 20:09:53 -04:00
parent fbf6810c5c
commit 8eaa920751
3 changed files with 85 additions and 89 deletions

View file

@ -23,7 +23,7 @@ namespace FFXIVClassic_Map_Server
if (!File.Exists("./map_config.ini"))
{
Program.Log.Error("[FILE NOT FOUND]");
Program.Log.Error("FILE NOT FOUND");
return false;
}
@ -39,9 +39,7 @@ namespace FFXIVClassic_Map_Server
ConfigConstants.DATABASE_NAME = configIni.GetValue("Database", "database", "");
ConfigConstants.DATABASE_USERNAME = configIni.GetValue("Database", "username", "");
ConfigConstants.DATABASE_PASSWORD = configIni.GetValue("Database", "password", "");
Program.Log.Info("[OK]");
return true;
}
}