Skip to content

Commit 366d9a0

Browse files
authored
Merge branch 'master' into dependabot/maven/org.apache.maven.plugins-maven-source-plugin-3.3.0
2 parents 6ca6e38 + ff55e43 commit 366d9a0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Simple logger for java with mixpanel support
66
<dependency>
77
<groupId>io.github.Fi0x</groupId>
88
<artifactId>JavaLogger</artifactId>
9-
<version>1.1.9</version>
9+
<version>1.2.1</version>
1010
</dependency>
1111
```

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<plugin>
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-gpg-plugin</artifactId>
98-
<version>3.0.1</version>
98+
<version>3.1.0</version>
9999
<executions>
100100
<execution>
101101
<id>sign-artifacts</id>
@@ -113,7 +113,7 @@
113113
<dependency>
114114
<groupId>com.mixpanel</groupId>
115115
<artifactId>mixpanel-java</artifactId>
116-
<version>1.5.1</version>
116+
<version>1.5.2</version>
117117
</dependency>
118118
</dependencies>
119119
</project>

src/main/java/io/fi0x/javalogger/logging/Logger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ private static String createLogString(LogEntry log)
366366
}
367367
private static String getLogEntryDate()
368368
{
369-
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss:SSS");
369+
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss.SSS");
370370
LocalDateTime now = LocalDateTime.now();
371371

372372
return "[" + dtf.format(now) + "]";

0 commit comments

Comments
 (0)