Remove debug log

This commit is contained in:
xen-42 2024-08-07 14:22:43 -04:00
parent a6037db562
commit fb00001e36

View File

@ -163,7 +163,6 @@ namespace NewHorizons
public object QuerySystem(Type outType, string jsonPath) public object QuerySystem(Type outType, string jsonPath)
{ {
var system = Main.SystemDict[Main.Instance.CurrentStarSystem]; var system = Main.SystemDict[Main.Instance.CurrentStarSystem];
NHLogger.Log("System Relative Path: " + system.RelativePath);
return system == null return system == null
? null ? null
: QueryJson(outType, Path.Combine(system.Mod.ModHelper.Manifest.ModFolderPath, system.RelativePath), jsonPath); : QueryJson(outType, Path.Combine(system.Mod.ModHelper.Manifest.ModFolderPath, system.RelativePath), jsonPath);