Fix some formatting issues (#2671)

This commit is contained in:
Underscore11 2020-10-14 16:50:00 -07:00 committed by GitHub
parent e8b1214219
commit c5841b58a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ public interface Message {
.append(text()
.decoration(BOLD, true)
.append(text('L', AQUA))
.append(text('P', DARK_GREEN))
.append(text('P', DARK_AQUA))
)
.append(text(']'))
.build();

View File

@ -154,7 +154,7 @@ public class MongoStorage implements StorageImplementation {
long duration = System.currentTimeMillis() - start;
if (success) {
meta.put("Ping", "&a" + duration + "ms");
meta.put("Ping", duration + "ms");
meta.put("Connected", "true");
} else {
meta.put("Connected", "false");

View File

@ -134,7 +134,7 @@ public abstract class HikariConnectionFactory implements ConnectionFactory {
long duration = System.currentTimeMillis() - start;
if (success) {
meta.put("Ping", "&a" + duration + "ms");
meta.put("Ping", duration + "ms");
meta.put("Connected", "true");
} else {
meta.put("Connected", "false");