UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

9 lines 255 B
module.exports = { name: "$log", description: "Logs text to the bot's console.", takesBrackets: true, execute: async (context, args) => { console.log("Solara log:", ...args); // Log all arguments return ""; } };