Skip to content

Commit

Permalink
apply spotless (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemhu authored Dec 4, 2024
1 parent 29649c1 commit 6ed75ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/teragrep/aer_02/EventDataConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ public Long getValue() {
SyslogMessage syslogMessage = new SyslogMessage()
.withSeverity(Severity.INFORMATIONAL)
.withFacility(Facility.LOCAL0)
.withTimestamp(enqueuedTime == null ? Instant.now().toEpochMilli() : enqueuedTime.toInstant().toEpochMilli())
.withTimestamp(
enqueuedTime == null ? Instant.now().toEpochMilli() : enqueuedTime.toInstant().toEpochMilli()
)
.withHostname(syslogConfig.hostName())
.withAppName(syslogConfig.appName())
.withSDElement(sdId)
Expand Down

0 comments on commit 6ed75ae

Please sign in to comment.