-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
# MoreCrashInfo | ||
Display more info in crash report. | ||
|
||
As we all know, Forge 1.13.2 - 1.14.4 removes mod list and coremod list in crash report, which makes users difficult to analyze what happened. | ||
This mod is designed to take it back. More info will be shown in crash report, and feel free to open an issue if other info needed. | ||
## Why make it? | ||
Forge 1.13.2 - 1.14.3 removed mod list and coremod list in crash report, while users need them to analyze which mod caused crash. | ||
Forge 1.14.4 added mod list back, but it is not formatted. It's hard to read when plenty of mods loaded. Coremods list is still not shown. | ||
Mod list added by Forge in crash report is shown below: | ||
``` | ||
Mod List: | ||
CustomSkinLoader_Forge-14.11-SNAPSHOT-89.jar CustomSkinLoader {[email protected] DONE} | ||
MoreCrashInfo-1.0.2.jar MoreCrashInfo {[email protected] DONE} | ||
forge-1.14.4-28.0.23-universal.jar Forge {[email protected] DONE} | ||
``` | ||
## What added? | ||
This mod is designed to take mod list and coremod list back with pretty printing. | ||
Feel free to open an issue if other info needed. | ||
What added in crash report is shown below: | ||
``` | ||
Forge Mods: | ||
| ID | Name | Version | Source | | ||
| ---------------- | ---------------- | ----------------- | -------------------------------------------- | | ||
| minecraft | Minecraft | 1.14.3 | Not Found | | ||
| customskinloader | CustomSkinLoader | 14.11-SNAPSHOT-89 | CustomSkinLoader_Forge-14.11-SNAPSHOT-89.jar | | ||
| morecrashinfo | MoreCrashInfo | 1.0.1 | MoreCrashInfo-1.0.1.jar | | ||
| forge | Forge | 27.0.22 | forge-1.14.3-27.0.22-universal.jar | | ||
| ID | Name | Version | Source | Status | | ||
| ---------------- | ---------------- | ----------------- | -------------------------------------------- | ------ | | ||
| minecraft | Minecraft | 1.14.4 | Not Found | NONE | | ||
| customskinloader | CustomSkinLoader | 14.11-SNAPSHOT-89 | CustomSkinLoader_Forge-14.11-SNAPSHOT-89.jar | DONE | | ||
| morecrashinfo | MoreCrashInfo | 1.0.2 | MoreCrashInfo-1.0.2.jar | DONE | | ||
| forge | Forge | 28.0.23 | forge-1.14.4-28.0.23-universal.jar | DONE | | ||
Forge CoreMods: | ||
| ID | Name | Source | Status | | ||
| ---------------- | ------------ | --------------- | ------ | | ||
| customskinloader | transformers | transformers.js | Loaded | | ||
| ID | Name | Source | Status | | ||
| ---------------- | ------------------------- | ---------------------------- | ------ | | ||
| customskinloader | transformers | transformers.js | Loaded | | ||
| forge | fieldtomethodtransformers | fieldtomethodtransformers.js | Loaded | | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters