-
Notifications
You must be signed in to change notification settings - Fork 12
Debug Config
Relentless edited this page Nov 22, 2022
·
3 revisions
The debug config can be used to track potential errors in the unification process.
Location: config/almostunified/debug.json
Dumps location: logs/almostunified
If you don't find the config, make sure you already loaded a world once.
Note: This config should not be shipped to the end user as it may produce large log files.
Key | Description | Values |
---|---|---|
dumpTagMap | Dumps the generated tag map based on the unify.json config. | true or false |
dumpDuplicates | Dumps all recipe duplicates. This will also dump recipes that were replaced. | true or false |
dumpUnification | Dumps all unified recipes. This will also dump original JSONs. | true or false |
dumpOverview | Dumps an overview about the whole unification process. | true or false |
dumpRecipes | Dumps all recipes before and after the unification process. | true or false |
Note: Forge and Fabric default configs are equal
{
"dumpTagMap": false,
"dumpDuplicates": false,
"dumpUnification": false,
"dumpOverview": false,
"dumpRecipes": false
}