You can also combine this mod with other Lib-mods
"ErrorReport Log Gui" for Modder
comands:
ErrRep({ })
JoErrRep({ })
JonnysErrRep({ Table })
JonnysErrorReport({ Table1, Table2, })
Test Code 1:
JonnysErrorReport({ data.raw.recipe["electric-mining-drill"] })
Test Code 2:
Recipe_Info = data.raw.recipe["electric-mining-drill"]
JonnysErrorReport({ Recipe_Info })
Test Code 3:
Recipe_Info = data.raw.recipe["electric-mining-drill"]
ErrorTable["electric-mining-drill"] = Error
JonnysErrorReport({ Recipe_Info, ErrorTable })
Test Code 4:
Table_Info["iron"] = data.raw.item["iron"]
JonnysErrorReport({ Table_Info })
Test Code 5:
Table_Info["iron"] = "is ok"
Table_Info["iron-plate"] = "is ok"
Table_Info["electric-mining-drill"] = "is ok"
Table_Info["my_mod-tool"] = "is ok"
Table_Info["my_mod-item"] = "is ok"
Table_Info["my_mod-recipe"] = "is ok"
Table_Info["my_mod-func_1"] = "is ok"
Table_Info["my_mod-func_2"] = "is ok"
Table_Info["my_mod-test"] = "is ok"
Table_Info["my_mod-Error"] = "is ok"
Table_Info["my_mod"] = "is ok"
JonnysErrorReport({ Table_Info })