Skip to content

Commit

Permalink
fix: remove console.trace() (#2973)
Browse files Browse the repository at this point in the history
  • Loading branch information
transmissions11 authored Jul 29, 2024
1 parent 957ab7d commit 817df99
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/account-kit/src/transportObserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export function transportObserver<TTransport extends Transport>(name: string, tr
const result = transport(opts);
const request: typeof result.request = async (req) => {
debug("request", name, req);
console.trace("request", name, req.method);
const response = await result.request(req);
debug("response", name, response);
return response as never;
Expand Down

0 comments on commit 817df99

Please sign in to comment.