Skip to content

Commit

Permalink
update log4j
Browse files Browse the repository at this point in the history
  • Loading branch information
swoellauer committed Dec 13, 2021
1 parent 097c1ef commit b8d38d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ repositories {
}

dependencies {
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.14.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.14.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j18-impl', version: '2.14.1' // needed for jetty logger
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.15.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.15.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j18-impl', version: '2.15.0' // needed for jetty logger

implementation group: 'org.antlr', name: 'antlr4-runtime', version: '4.9.2'
implementation group: 'org.javassist', name: 'javassist', version: '3.28.0-GA'
Expand Down
2 changes: 1 addition & 1 deletion src/tsdb/TsDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class TsDB implements AutoCloseable {
private static final Logger log = LogManager.getLogger();

public static final String tubedb_version = "1.20.4";
public static final String tubedb_version = "1.20.5";

/**
* map regionName -> Region
Expand Down

0 comments on commit b8d38d7

Please sign in to comment.