Skip to content

Commit 8245909

Browse files
committed
chore: remove other config.time
1 parent bf6a4e9 commit 8245909

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/connector-config/Config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@ export class Config {
2525
public constructor(private readonly appDir: string) {}
2626

2727
public static async load(appDir: string): Promise<Config> {
28-
console.time("Config.load")
2928
const config = new Config(appDir)
3029

3130
if (fs.existsSync(config.configPath)) {
3231
const fileContentAsString = await fs.promises.readFile(config.configPath, "utf-8")
3332
const fileContentAsJson = JSON.parse(fileContentAsString)
3433
await config.fillFromJson(fileContentAsJson)
3534
}
36-
console.timeEnd("Config.load")
3735

3836
return config
3937
}

0 commit comments

Comments
 (0)