Skip to content

Commit 1cd882c

Browse files
committed
🐛 fix: fix console time error
1 parent ecf1c4c commit 1cd882c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

api/v1/runner.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ export default async (req: Request) => {
1919

2020
console.log(`检测到 functionCall: ${name}`);
2121

22-
console.timeLog('请求 index');
2322
const res = await fetch(INDEX_URL);
2423
const manifest: LobeChatPlugins = await res.json();
25-
console.timeEnd('请求 index');
24+
console.log(manifest);
2625

2726
const item = manifest.plugins.find((i) => i.name === name);
2827

0 commit comments

Comments
 (0)