Skip to content

Commit

Permalink
Fixed Red Core using its id instead of its name for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Desoroxxx committed Sep 7, 2023
1 parent 93ddb6b commit de81a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ You now have `read` and `write` methods for all Vectors from Red Core, it simply
### Fixed

- Fixed Red Core using the wrong GitHub issue link when logging errors
- Fixed Red Core using its id instead of its name for logging

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public class ModReference {
public static final String ID = Tags.ID;
public static final String NAME = "Red Core";
public static final String VERSION = Tags.VERSION;
public static final Logger LOG = LogManager.getLogger(ID);
public static final Logger LOG = LogManager.getLogger(NAME);
public static final RedLogger RED_LOG = new RedLogger(NAME, "https://linkify.cz/RedCoreBugReport", LOG);
}

0 comments on commit de81a5e

Please sign in to comment.