Skip to content

Commit 31e269d

Browse files
committed
feat(core): add logback-journal appender dependency
Added library org.gnieh:logback-journal that provides implementation of a LogBack appender that writes into systemd-journald logging system service on linux.
1 parent 9b5358c commit 31e269d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

perun-base/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@
7373
<groupId>org.springframework.boot</groupId>
7474
<artifactId>spring-boot-starter-logging</artifactId>
7575
</dependency>
76+
<!-- logback appender for writing into systemd-journald which in turn writes into syslog
77+
see https://github.com/gnieh/logback-journal
78+
-->
79+
<dependency>
80+
<groupId>org.gnieh</groupId>
81+
<artifactId>logback-journal</artifactId>
82+
<version>${logback-journal.version}</version>
83+
</dependency>
7684

7785
<!-- OTHER -->
7886
<dependency>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
<jcip.version>1.0</jcip.version>
7777
<jdom.version>1.0</jdom.version>
7878
<json.version>20220924</json.version>
79+
<logback-journal.version>0.3.0</logback-journal.version>
7980
<reflections.version>0.9.11</reflections.version>
8081
<testcontainers.version>1.18.3</testcontainers.version>
8182
</properties>

0 commit comments

Comments
 (0)