Skip to content

Commit

Permalink
removed uppercase in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
GhomKrosmonaute committed Oct 24, 2023
1 parent 4272b80 commit 5e6b05f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/listeners/cleanup.ready.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const listener: app.Listener<"ready"> = {
// todo cleanup message if a don't need to keep them

app.log(
`Deleted ${chalk.blueBright(userCount)} users, ${chalk.blueBright(
`deleted ${chalk.blueBright(userCount)} users, ${chalk.blueBright(
guildCount
)} guilds and ${chalk.blueBright(0)} messages.`
)
Expand Down
2 changes: 1 addition & 1 deletion src/listeners/restart.ready.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const listener: app.Listener<"ready"> = {
async run(client) {
const restartMessages: Restart[] = await restart.query.select()

app.log("Restart messages: " + restartMessages.length)
app.log("restart messages: " + restartMessages.length)

for (const restartMessage of restartMessages) {
const channel = await client.channels.fetch(
Expand Down

0 comments on commit 5e6b05f

Please sign in to comment.