Skip to content

Commit

Permalink
+ changed default class pattern from full to simple
Browse files Browse the repository at this point in the history
  • Loading branch information
q3769 committed Apr 2, 2023
1 parent 9b786a8 commit 0f6955d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

[![Maven Central](https://img.shields.io/maven-central/v/io.github.elf4j/elf4j-engine.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.github.elf4j%22%20AND%20a:%22elf4j-engine%22)

Asynchronous Java log engine implementing the [ELF4J](https://github.com/elf4j/elf4j) (Easy Logging Facade for Java ) API.
Asynchronous Java log engine implementing the [ELF4J](https://github.com/elf4j/elf4j) (Easy Logging Facade for Java )
API.

Naturally, this engine is packaged by [elf4j-provider](https://github.com/elf4j/elf4j-provider) to
make a native logging _service provider_ of the [ELF4J](https://github.com/elf4j/) logging facade.
Expand Down
2 changes: 1 addition & 1 deletion 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-engine</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<packaging>jar</packaging>
<name>elf4j-engine</name>
<description>A stand-alone Java log engine implementing the ELF4J (Easy Logging Facade for Java) API</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
@Value
public class ClassPattern implements LogPattern {
private static final DisplayOption DEFAULT_DISPLAY_OPTION = DisplayOption.FULL;
private static final DisplayOption DEFAULT_DISPLAY_OPTION = DisplayOption.SIMPLE;
@NonNull DisplayOption classDisplayOption;

/**
Expand Down

0 comments on commit 0f6955d

Please sign in to comment.