Changed the custom-tiles.json not found error message to info message

master
Mohammad Shoaib Khan 2023-02-11 13:19:12 +05:30
parent 7409959c99
commit 36ce36cfe0
No known key found for this signature in database
GPG Key ID: D8040D966320B620
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ namespace stardew_access.Features
} }
catch (System.Exception) 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")}");
} }
} }