loggy-discord
v1.0.2
Published
A simple package that allows you to put your logs on your Discord server.
Downloads
6
Readme
Loggy
A package that allows you to put your logs on your Discord server.
https://www.npmjs.com/package/loggy-discord
Features
Get the production logs of your app directly on your Discord server, using different methods, with different message formats, and chose if you want to get tagged or not on these messages.
No more struggling with the Heroku console or other prod platforms where it's not practical to see what's hapenning on your app... You can now use these different available methods with Loggy :
loggy.log("message")
👉 a simple logloggy.alert("message")
👉 a log displayed in yellowloggy.error("message")
👉 an error log displayed in red
loggy.save()
👉 save a log in a secondary channel, to be sure to find it later
loggy.client()
👉 to first connect to the bot clientloggy.quit()
👉 to quit Loggy in your app process if you need it
Get Ready
NPM
npm install loggy-discord
Discord Bot Integration Setup
- go to your Discord developper portal : https://discord.com/developers/applications
- create an app called "Loggy"
- got to the created app, and create a bot in it called... "Loggy" (oh wow, surprising)
- don't forget to copy the secret Token of your bot to paste it in your .env file later
If you want to add a profile picture to your Loggy bot, here is his logo : https://jker.fr/loggy-logo
Discord server preparation
Create two channels in your own Discord server :
- one to post logs
- and one to post saved logs (channel 2)
- put notifications settings of these chans on "only mentions"
Environments variables
Put some env vars in a .env file, located at the root of your app :
// you got it early, as shown above
DISCORD_LOGGY_TOKEN=your_secret_discord_bot_token
// right click on your channel -> copy ID
CHANNEL_ID_1=discord_channel_id_where_you_want_logs
CHANNEL_ID_2=discord_channel_id_where_you_want_save_logs
// right click on your profile pic somewhere in a chat -> copy ID
USER_ID=user_you_want_to_tag_in_messages
How to use it in your app
import loggy from "loggy-discord";
// note that, to use "import" in a nodeJS env, you have to add the line "type" : "module" in your package.json
// or use :
// const loggy = require("loggy-discord")
// START BOT
await loggy.client(
// set param to true for the types of messages where you want to be tagged on Discord
// don't write the param line if you don't want to be tagged on this type of message
// the example below : loggy.log() will not tag you on Discord, but .error(), .alert() and .save() will
{
// logUserTag : true,
errorUserTag : true,
alertUserTag: true,
saveUserTag : true
}
);
// LOG SOME STUFF
loggy.log("This is an absolutely normal log.");
// pass a second arg set to "true" if you exceptionally want to be tagged on this particular .log line
loggy.log("Always so normal log, but you are tagged on this one.", true);
loggy.error("A wild error appears !");
loggy.alert("An alert that alerts for alerting things.");
loggy.save("Oh really, a message saved in another channel, that's awesome !");
// AND QUIT LOGGY IF YOU NEED IT
loggy.quit();
// use async / await in your app process to be sure that loggy.quit() is executing only after messages are sent
// you can use await on loggy's methods (example : await loggy.log())
Author
Contributor(s)
A big thank to