Parent Directory
|
Revision Log
feat: add debug logging event
1 | import BaseEvent from "../../utils/structures/BaseEvent"; |
2 | |
3 | export default class DebugEvent extends BaseEvent { |
4 | constructor() { |
5 | super("debug"); |
6 | } |
7 | |
8 | async run(e: any): Promise <void> { |
9 | console.log("DEBUG: ", e); |
10 | } |
11 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |