From 36ce36cfe0de0c2fda8a5631314f8b9321fd7488 Mon Sep 17 00:00:00 2001 From: Mohammad Shoaib Khan Date: Sat, 11 Feb 2023 13:19:12 +0530 Subject: [PATCH] Changed the custom-tiles.json not found error message to info message --- stardew-access/Features/StaticTiles.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stardew-access/Features/StaticTiles.cs b/stardew-access/Features/StaticTiles.cs index 7cc1a32..87fa154 100644 --- a/stardew-access/Features/StaticTiles.cs +++ b/stardew-access/Features/StaticTiles.cs @@ -40,7 +40,7 @@ namespace stardew_access.Features } catch (System.Exception) { - MainClass.ErrorLog($"custom-tiles.json file not found or an error occured while initializing custom-tiles.json\nThe path of the file should be:\n\t{Path.Combine(MainClass.ModHelper.DirectoryPath, "assets", "custom-tiles.json")}"); + MainClass.InfoLog($"custom-tiles.json file not found or an error occured while initializing custom-tiles.json\nThe path of the file should be:\n\t{Path.Combine(MainClass.ModHelper.DirectoryPath, "assets", "custom-tiles.json")}"); } } @@ -174,4 +174,4 @@ namespace stardew_access.Features return (null, CATEGORY.Others); } } -} \ No newline at end of file +}