Skip to content

Commit 4fd1db1

Browse files
committed
fix: Don't log plugin name
1 parent 976eece commit 4fd1db1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/plugin.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ class UnimplementedError extends Error {
77
}
88

99
export abstract class StarbasePlugin {
10-
constructor(public name: string) {
11-
console.log(`Plugin ${name} loaded`)
12-
}
10+
constructor(public name: string) {}
1311

1412
public async register(app: StarbaseApp): Promise<void> {
1513
throw new UnimplementedError('register')

0 commit comments

Comments
 (0)