Skip to content

Commit

Permalink
Release 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ljiang1 committed Apr 11, 2019
2 parents 5cadd36 + d761308 commit d37f07b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Splunk Logging for Java Changelog

## Version 1.7.3

* Update Log4j dependency version to 2.10.0 [#114](https://github.com/splunk/splunk-library-javalogging/pull/114).

## Version 1.7.2

* Closing httpclient properly on logback shutdown [#112](https://github.com/splunk/splunk-library-javalogging/pull/112).
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Splunk Logging for Java

#### Version 1.7.2
#### Version 1.7.3

Splunk logging for Java enables you to log events to HTTP Event Collector or to a TCP input on a Splunk Enterprise instance within your Java applications. You can use three major Java logging frameworks: [Logback](http://logback.qos.ch), [Log4j 2](http://logging.apache.org/log4j/2.x/), and [java.util.logging](https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html). Splunk logging for Java is also enabled for [Simple Logging Facade for Java (SLF4J)](http://www.slf4j.org).

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.splunk.logging</groupId>
<artifactId>splunk-library-javalogging</artifactId>
<version>1.7.2</version>
<version>1.7.3</version>
<packaging>jar</packaging>

<name>Splunk Logging for Java</name>
Expand Down Expand Up @@ -208,13 +208,13 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.1</version>
<version>2.10.0</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.1</version>
<version>2.10.0</version>
</dependency>

<dependency>
Expand Down
Expand Up @@ -165,7 +165,7 @@ public static HttpEventCollectorLog4jAppender createAppender(

if (layout == null)
{
layout = PatternLayout.createLayout("%m", null, null, Charset.forName("UTF-8"), true, false, null, null);
layout = PatternLayout.createLayout("%m", null, null, null, Charset.forName("UTF-8"), true, false, null, null);
}

final boolean ignoreExceptionsBool = Boolean.getBoolean(ignoreExceptions);
Expand Down

0 comments on commit d37f07b

Please sign in to comment.