Skip to content

Commit

Permalink
Merge pull request #155 from DataONEorg/bug-154-logging
Browse files Browse the repository at this point in the history
Bug 154 logging
  • Loading branch information
artntek authored Dec 17, 2024
2 parents e2a9215 + 5b58ad6 commit 79d3663
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
- mountPath: /etc/dataone/dataone-indexer.properties
subPath: dataone-indexer.properties
name: {{ .Release.Name }}-config-volume
- mountPath: /etc/dataone/log4j.properties
- mountPath: /etc/dataone/log4j2.properties
subPath: log4j2.properties
name: {{ .Release.Name }}-config-volume
- mountPath: {{ .Values.persistence.mountPath }}
Expand Down
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<d1_libclient_java.version>2.3.1</d1_libclient_java.version>
<solr.version>8.11.2</solr.version>
<solr.test.home>solr8home</solr.test.home>
<log4j.version>2.17.1</log4j.version>
</properties>

<profiles>
Expand Down Expand Up @@ -217,7 +218,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -278,17 +279,27 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>2.24.0</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.0</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jcl</artifactId>
<version>2.24.0</version>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-layout-template-json</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
Expand Down

0 comments on commit 79d3663

Please sign in to comment.