XLog -> BukkitLogger
This commit is contained in:
19
src/main/java/ghast/logger/FormattingPair.java
Normal file
19
src/main/java/ghast/logger/FormattingPair.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package ghast.logger;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.ToString;
|
||||
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
@ToString
|
||||
public class FormattingPair {
|
||||
|
||||
private final String message;
|
||||
private final Throwable throwable;
|
||||
|
||||
public FormattingPair(String message) {
|
||||
this.message = message;
|
||||
this.throwable = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user