Skip to content

Commit

Permalink
fix(startup): Add some more color
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Crespi committed Mar 24, 2020
1 parent 1c61f26 commit 34ce803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/framework/services/RabbitMq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class RabbitMqService extends IMService {
this.channelStartup.consume(
this.qNameStartup,
(msg) => {
console.log(`Aquired start ticket...`);
console.log(`\x1b[32mAquired start ticket!\x1b[0m`);

// Save the ticket so we can return it to the queue when our startup is done
this.startTicket = msg;
Expand Down
2 changes: 1 addition & 1 deletion src/invites/services/Tracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class TrackingService extends IMService {
}

if (this.pendingGuilds.size === 0) {
console.log(`Loaded all pending guilds, releasing start ticket`);
console.log(`\x1b[32mLoaded all pending guilds!\x1b[0m`);
this.startupDone();
}

Expand Down

0 comments on commit 34ce803

Please sign in to comment.