Skip to content

Commit

Permalink
chore: change log text
Browse files Browse the repository at this point in the history
  • Loading branch information
NedcloarBR committed Jun 16, 2024
1 parent f2ef555 commit e2657d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/schedule/schedule.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class ScheduleService {
@Cron(CronExpression.EVERY_DAY_AT_MIDNIGHT)
public async checkPermanentPremiumGuilds(): Promise<void> {
const startTimestamp = new Date().getMilliseconds();
this.logger.log("Start Checking Permanent Premium Guilds");
this.logger.log("Started Checking Permanent Premium Guilds");
for (const guild of await this.database.GuildRepo().getAll()) {
if (this.premiumGuilds.includes(guild.id) && !guild.Settings.Premium) {
await this.database
Expand All @@ -48,7 +48,7 @@ export class ScheduleService {
@Cron(CronExpression.EVERY_DAY_AT_MIDNIGHT)
public async checkPermanentPremiumUsers(): Promise<void> {
const startTimestamp = new Date().getMilliseconds();
this.logger.log("Start Checking Permanent Premium Users");
this.logger.log("Started Checking Permanent Premium Users");
for (const user of await this.database.UserRepo().getAll()) {
if (this.premiumUsers.includes(user.id) && !user.Settings.Premium) {
await this.database
Expand Down

0 comments on commit e2657d5

Please sign in to comment.