Skip to content

Commit

Permalink
Merge pull request #1153 from ai16z/fetch_logs_debug
Browse files Browse the repository at this point in the history
fix: fetch log level to debug
  • Loading branch information
shakkernerd authored Dec 17, 2024
2 parents b9f8970 + 29ce2f9 commit c08d0a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

Expand Down

0 comments on commit c08d0a2

Please sign in to comment.