From 22bfbb759bd37e503772d68863b6948ed3025472 Mon Sep 17 00:00:00 2001 From: Corey Rice Date: Fri, 3 Jan 2025 15:52:29 -0300 Subject: [PATCH] fix: log address as hex --- subgraphs/isolated-pools/src/operations/get.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subgraphs/isolated-pools/src/operations/get.ts b/subgraphs/isolated-pools/src/operations/get.ts index 001386ca..da7f585c 100644 --- a/subgraphs/isolated-pools/src/operations/get.ts +++ b/subgraphs/isolated-pools/src/operations/get.ts @@ -11,7 +11,7 @@ import { export const getPool = (comptroller: Address): Pool | null => { const pool = Pool.load(getPoolId(comptroller)); if (!pool) { - log.error('Pool {} not found', [comptroller.toString()]); + log.error('Pool {} not found', [comptroller.toHexString()]); } return pool as Pool; };