|
|
There are a few Placeholders to use in the Log Format!
|
|
|
|
|
|
<h3>%date%<h3>
|
|
|
This Placeholder will be replace, on Log send, with the Current Date, and if set the DateTimeFormat Provided!
|
|
|
|
|
|
<h3>%message%<h3>
|
|
|
This Placeholder will be replace, with the message that is being save/written to the log!
|
|
|
|
|
|
An example usage for this would be
|
|
|
```java
|
|
|
.setLogFormat("[%date%]: %message%");
|
|
|
```
|
|
|
|
|
|
But if you would rather like to stick with the default log setup, you can either not a setter, or you can add
|
|
|
```java
|
|
|
.useDefaultLogFormat();
|
|
|
```
|
|
|
to the Arguments.
|
|
|
|
|
|
The default Log format is:
|
|
|
```java
|
|
|
"[%date%]: %message%"
|
|
|
``` |
|
|
\ No newline at end of file |