Skip to content

Commit

Permalink
Added Log#format
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Apr 3, 2024
1 parent d659d0a commit 2177949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/latvian/apps/webutils/ansi/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void log(Type type, Object message) {
var c = Ansi.of();
c.append(Ansi.cyan(TimeUtils.formatDate(new StringBuilder(), now).toString()));
c.append(' ');
c.append(format(Ansi.of(message), type));
c.append(format(message, type));
System.out.println(c);
}

Expand Down

0 comments on commit 2177949

Please sign in to comment.