Fixed For emissive texture loading
This commit is contained in:
parent
bfebba6791
commit
9fcec2b033
3 changed files with 145 additions and 85 deletions
|
@ -60,8 +60,8 @@ public final class Logger {
|
|||
LOGGER.error(modPref + message, o1, o2, ex);
|
||||
}
|
||||
|
||||
public void error(String message, Object o1, Object o2) {
|
||||
LOGGER.error(modPref + message, o1, o2);
|
||||
public void error(String message, Object... params) {
|
||||
LOGGER.error(modPref + message, params);
|
||||
}
|
||||
|
||||
public void error(String message, Exception ex) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue