You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 3, 2021. It is now read-only.
Set an object to be the new logger.
Requires a function under the name log.
Parameters
logObject object
Logger object
Returns
true if logger set; otherwise false
Example
// Change the logger to only write messages to console and not include the timestamp.bot.setLogger({log: function(){varargs=Array.prototype.slice.call(arguments);console.log.apply(console,args);}});