Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &commands.YAGCommand{ CmdCategory: commands.CategoryDebug, HideFromCommandsPage: true, Name: "toggledbg", Description: "Toggles Debug Logging. Restarting the bot will always reset debug logging. Bot Owner Only", HideFromHelp: true, RunFunc: util.RequireOwner(func(data *dcmd.Data) (interface{}, error) { if logrus.IsLevelEnabled(logrus.DebugLevel) { common.SetLoggingLevel(logrus.InfoLevel) return "Disabled debug logging", nil } common.SetLoggingLevel(logrus.DebugLevel) return "Enabled debug logging", nil }), }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.