diff --git a/agent/src/index.ts b/agent/src/index.ts index c1adee63c68..8e8e93ccc83 100644 --- a/agent/src/index.ts +++ b/agent/src/index.ts @@ -69,8 +69,8 @@ export const wait = (minTime: number = 1000, maxTime: number = 3000) => { }; const logFetch = async (url: string, options: any) => { - elizaLogger.info(`Fetching ${url}`); - elizaLogger.info(JSON.stringify(options, null, 2)); + elizaLogger.debug(`Fetching ${url}`); + elizaLogger.debug(JSON.stringify(options, null, 2)); return fetch(url, options); };