-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Ignored local maven settings * chore: Unified Jackson dependency * chore: Switched to log4j2 and slf4j2 * chore: Added missing slf4j dependency version * chore: Moved shade plugin after javadoc Shade plugin interferes with the source code, therefore it should be included after all other plugins * chore: Aligned the javadoc source version with compiler source version
- Loading branch information
1 parent
3fae19d
commit 312b8f9
Showing
5 changed files
with
134 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,30 @@ | ||
Configuration: | ||
configuration: | ||
status: warn | ||
|
||
appenders: | ||
Console: | ||
name: LogToConsole | ||
PatternLayout: | ||
Pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n" | ||
console: | ||
name: Console | ||
patternLayout: | ||
Pattern: "[%-5level] %d{HH:mm:ss.SSS} [%t] %c{1} - %msg%n" | ||
|
||
#File: | ||
# name: File | ||
# fileName: logs/app.log | ||
# PatternLayout: | ||
# Pattern: "%d %p %C{1.} [%t] %m%n" | ||
|
||
RollingFile: | ||
- name: LogToRollingFile | ||
fileName: logs/app.log | ||
filePattern: "logs/$${date:yyyy-MM}/app-%d{MM-dd-yyyy}-%i.log.gz" | ||
PatternLayout: | ||
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n" | ||
Policies: | ||
SizeBasedTriggeringPolicy: | ||
size: 10MB | ||
DefaultRollOverStrategy: | ||
max: 10 | ||
|
||
Loggers: | ||
loggers: | ||
logger: | ||
- name: com.purbon.kafka | ||
level: debug | ||
additivity: false | ||
AppenderRef: | ||
- ref: LogToConsole | ||
- ref: LogToRollingFile | ||
level: info | ||
- name: com.purbon.kafka.topology | ||
level: info | ||
additivity: true | ||
AppenderRef: | ||
- ref: LogToConsole | ||
- ref: LogToRollingFile | ||
- name: com.purbon.kafka.topology.api.mds | ||
level: info | ||
additivity: true | ||
AppenderRef: | ||
- ref: LogToConsole | ||
- ref: LogToRollingFile | ||
Root: | ||
level: error | ||
AppenderRef: | ||
ref: LogToConsole | ||
- name: org.apache.kafka | ||
level: warn | ||
- name: org.apache.kafka.clients.admin.AdminClientConfig | ||
level: error | ||
- name: org.apache.kafka.clients.producer.ProducerConfig | ||
level: error | ||
- name: org.apache.kafka.clients.consumer.ConsumerConfig | ||
level: error | ||
|
||
root: | ||
level: info | ||
appenderRef: | ||
ref: Console |
Oops, something went wrong.