You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some parsing errors result in multiple logs that don't add new information. Example for trying to open wild encounters if the file is missing:
<timestamp> [ERROR] Could not open '<path>/wild_encounters.json': No such file or directory
<timestamp> [ERROR] Error: Failed to parse json file <path>/wild_encounters.json: unexpected end of input
<timestamp> [WARN] Failed to read wild encounters from <path>/wild_encounters.json
ParseUtil should probably expose error messages to the caller and allow them to handle the details. The example above should look something like:
<timestamp> [WARN] Failed to read wild encounters from '<path>/wild_encounters.json': No such file or directory
The text was updated successfully, but these errors were encountered:
Some parsing errors result in multiple logs that don't add new information. Example for trying to open wild encounters if the file is missing:
ParseUtil
should probably expose error messages to the caller and allow them to handle the details. The example above should look something like:The text was updated successfully, but these errors were encountered: