Skip to content

Commit 29ce2f9

Browse files
committed
fix: fetch log level to debug
1 parent b9f8970 commit 29ce2f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ export const wait = (minTime: number = 1000, maxTime: number = 3000) => {
6969
};
7070

7171
const logFetch = async (url: string, options: any) => {
72-
elizaLogger.info(`Fetching ${url}`);
73-
elizaLogger.info(JSON.stringify(options, null, 2));
72+
elizaLogger.debug(`Fetching ${url}`);
73+
elizaLogger.debug(JSON.stringify(options, null, 2));
7474
return fetch(url, options);
7575
};
7676

0 commit comments

Comments
 (0)