From 29ce2f946f7c34bc54de3abad9c530334a33bae5 Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Tue, 17 Dec 2024 03:28:00 +0000 Subject: [PATCH] fix: fetch log level to debug --- agent/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); };