Skip to content

Commit 1a6884c

Browse files
committed
refactor: remove unwanted console log
1 parent d5a7679 commit 1a6884c

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

packages/commandkit/src/flags/feature-flags.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ import {
88
Client,
99
ClientEvents,
1010
ContextMenuCommandInteraction,
11-
Events,
1211
Guild,
1312
Message,
1413
TextBasedChannel,
1514
} from 'discord.js';
1615
import { LoadedCommand } from '../app';
17-
import { FlagStore } from './store';
1816

1917
export type MaybePromise<T> = T | Promise<T>;
2018

packages/commandkit/src/plugins/plugin-runtime/CompilerPluginRuntime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export class CompilerPluginRuntime {
3737
}
3838
} catch (e: any) {
3939
const err = e instanceof Error ? e : new Error(e);
40-
console.log(err);
4140
throw new Error(
4241
`Plugin ${plugin.name} failed to transform: ${err.message}`,
4342
);

0 commit comments

Comments
 (0)