Fix logger timestamp not showing time
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-08-25 22:43:04 +02:00
parent 188eafa2ee
commit 94c126e32b
2 changed files with 12 additions and 7 deletions

View File

@@ -46,8 +46,8 @@ public class HidekoBot
standardInviteLink = standardInviteLink.replace("%userid%", botUserId);
// log the invite-link to console so noob users can just click on it.
logger.log("Bot User ID: " + botUserId, 10);
logger.log("Invite Link: " + standardInviteLink, 10);
logger.log("Bot User ID: " + botUserId, 5);
logger.log("Invite Link: " + standardInviteLink, 5);
}