Skip to content

Commit

Permalink
elf4j-engine version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
q3769 committed Mar 23, 2023
1 parent 6472698 commit 399028b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,28 +188,33 @@ JSON Customized
* When in doubt, use lower-case.

```properties
### noop flag if set to true will be globally overriding, no logging will be performed
### global no-op flag, overriding if set true
#noop=true
### Any level is optional, default to TRACE if omitted
### This override the default global level
level=info
### These override level of all caller classes included the specified package
level@org.springframework=warn
### Any writer is optional, default to a single standard writer if no writer configured
### Global override of standard writer default out stream type - stdout/stderr/auto. auto means to use stdout if severity level is lower than WARN, otherwise use stderr
standard.stream=stderr
writer1=standard
### Writer stream can be stdout/stderr/auto, default to stdout; auto means to use stdout if severity level is lower than WARN, otherwise stderr
#writer1.stream=auto
### Writer stream type if present overrides global level type. If no stream type configured at either global or writer level, default to stdout
writer1.stream=auto
### This is the default output pattern, can be omitted
writer1.pattern={timestamp} {level} [{thread}] {class} - {message}
#writer1.pattern={timestamp} {level} [{thread}] {class} - {message}
### This would customize the format patterns of the specified writer
#writer1.pattern={timestamp:yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ} {level:5} [{thread:name|id}] {class:simple|full|compressed} - {message}
### Multiple writers are supported, each with its own configurations
writer2=standard
#writer2.level=trace
### Default json pattern does not include thread and caller details, and uses minified one-line format for the JSON string
#writer2.pattern={json}
### This would force the JSON to include the thread/caller details with pretty print format
### This would force the JSON to include the thread/caller details
writer2.pattern={json:caller-thread,caller-detail,pretty}
### This would print JSON string in pretty format
#writer2.pattern={json:caller-thread,caller-detail,pretty}
### This would force the writer to use stderr instead of stdout
```

**Configuration Refresh**
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.github.elf4j</groupId>
<artifactId>elf4j-provider</artifactId>
<version>2.0.1</version>
<version>2.1.0</version>
<packaging>jar</packaging>
<name>elf4j-provider</name>
<description>Native logging service provider implementation of ELF4J (Easy Logging Facade For Java)
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>io.github.elf4j</groupId>
<artifactId>elf4j-engine</artifactId>
<version>1.0.4</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down

0 comments on commit 399028b

Please sign in to comment.