-
I recently looked into this API for a friend to make a discord bot and it constantly spams the console with:
Is there an easy way to silence this?
Any help would be appreciated as this is rather annoying and I'm not sure what to do to stop it. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
if you implement a dummy logger (we use console as a reference for what logging we do), you can turn all of them off or use a logger that lets you set the "log level" like the one we use in genesis or something like winston. alternatively, if you don't want to parse the data yourself, you can fetch from our API. (Docs) |
Beta Was this translation helpful? Give feedback.
if you implement a dummy logger (we use console as a reference for what logging we do), you can turn all of them off or use a logger that lets you set the "log level" like the one we use in genesis or something like winston.
alternatively, if you don't want to parse the data yourself, you can fetch from our API. (Docs)