Skip to content

Commit 8d8853e

Browse files
authored
refactor: replace console.log with SystemLogger.info for registration success (RocketChat#39278)
1 parent faa27f3 commit 8d8853e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/meteor/app/cloud/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Meteor.startup(async () => {
2222
throw new Error("Couldn't register with token. Please make sure token is valid or hasn't already been used");
2323
}
2424

25-
console.log('Successfully registered with token provided by REG_TOKEN!');
25+
SystemLogger.info('Successfully registered with token provided by REG_TOKEN!');
2626
} catch (err: any) {
2727
SystemLogger.error({ msg: 'An error occurred registering with token.', err });
2828
}

0 commit comments

Comments
 (0)