bugfixes: grantDeveloper fix and exit on error

This commit is contained in:
liushuyu 2020-05-02 16:47:26 -06:00
parent 0887c3b8cb
commit 59821a21d3
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ export function command (message: discord.Message) {
member.roles.remove(role); member.roles.remove(role);
message.channel.send(`${user.toString()}'s speech has been revoked in the #development channel.`); message.channel.send(`${user.toString()}'s speech has been revoked in the #development channel.`);
} else { } else {
member.roles.remove(role); member.roles.add(role);
message.channel.send(`${user.toString()} has been granted speech in the #development channel.`); message.channel.send(`${user.toString()} has been granted speech in the #development channel.`);
} }
}); });

View File

@ -13,7 +13,7 @@ const logger = winston.createLogger({
handleExceptions: true handleExceptions: true
}) })
], ],
exitOnError: false, exitOnError: true,
}); });
// Setup logging for LogDNA cloud logging. // Setup logging for LogDNA cloud logging.