Skip to content

Commit

Permalink
Add printErr to logger
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldieeins committed Sep 21, 2024
1 parent fe966a8 commit 361c44f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nexus Utilities `2024.9.1.1`
# Nexus Utilities `2024.9.2`

### Java 21 library designed to simplify the development of Java programs.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.zyneonstudios.nexus</groupId>
<artifactId>base-utilities</artifactId>
<version>2024.9.1.1</version>
<version>2024.9.2</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void printErr(String prefix, String type, String message, String reason,
err("Reason: "+reason);
}
if(possibleFixes!=null) {
String p = "Possible fix: ";
String p = "Possible fix(es): ";
for(String fix:possibleFixes) {
err(p+fix);
p = "";
Expand Down

0 comments on commit 361c44f

Please sign in to comment.