Skip to content

Debug Config

Relentless edited this page Nov 22, 2022 · 3 revisions

Description

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.

Explanation

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

Default Config

Note: Forge and Fabric default configs are equal

{
  "dumpTagMap": false,
  "dumpDuplicates": false,
  "dumpUnification": false,
  "dumpOverview": false,
  "dumpRecipes": false
}
Clone this wiki locally