0

XLog -> BukkitLogger

This commit is contained in:
2021-10-07 01:03:50 +03:00
parent 4ba35bd89d
commit a871175d38
6 changed files with 401 additions and 0 deletions

View 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;
}
}