From 6a34745a5fad64f78fd189bd9795a8bbe2fa21e7 Mon Sep 17 00:00:00 2001
From: Li
Date: Sun, 17 Jul 2022 22:34:26 +1200
Subject: [PATCH] add some debug print
---
HorseIsleServer/LibHISP/Server/GameDataJson.cs | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/HorseIsleServer/LibHISP/Server/GameDataJson.cs b/HorseIsleServer/LibHISP/Server/GameDataJson.cs
index 9e3085e..b2630a2 100644
--- a/HorseIsleServer/LibHISP/Server/GameDataJson.cs
+++ b/HorseIsleServer/LibHISP/Server/GameDataJson.cs
@@ -22,12 +22,15 @@ namespace HISP.Server
public static void ReadGamedata()
{
dynamic gameData;
+ Logger.DebugPrint("Reading GAMEDATA");
if (Directory.Exists(ConfigReader.GameData))
{
+ Logger.DebugPrint("Found GAMEDATA DIR ... ");
gameData = new JObject();
string[] files = Directory.GetFiles(ConfigReader.GameData);
foreach(string file in files)
{
+ Logger.DebugPrint("Reading: "+file);
string jsonData = File.ReadAllText(file);
JObject thisData = (JObject)JsonConvert.DeserializeObject(jsonData);
JObject jData = (JObject)gameData;
@@ -37,12 +40,14 @@ namespace HISP.Server
}
else if (File.Exists(ConfigReader.GameData))
{
+
+ Logger.DebugPrint("Found GAMEDATA FILE ... ");
string jsonData = File.ReadAllText(ConfigReader.GameData);
gameData = JsonConvert.DeserializeObject(jsonData);
}
else
{
- Logger.ErrorPrint("Game Data : " + ConfigReader.GameData + " Does not exist!");
+ Logger.ErrorPrint("Could not find GAMEDATA, configured as; " + ConfigReader.GameData + " But no file or directory exists!");
GameServer.ShutdownServer();
return;
}