From 8d7f1779275c3f80065d1ee625c0415afa1b731b Mon Sep 17 00:00:00 2001 From: Amadeo Pellicce Date: Sun, 2 Apr 2023 10:50:48 -0700 Subject: [PATCH] improving error messaging --- src/repo/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repo/index.ts b/src/repo/index.ts index 62c16d4..a94e559 100644 --- a/src/repo/index.ts +++ b/src/repo/index.ts @@ -92,7 +92,7 @@ export async function addIdentifierToNetwork(dir: string, networkCode: string, i const networkInfoFilePath = path.join(dir, getDirPathForTokenlist(networkCode), 'info.json'); if(!fs.existsSync(networkInfoFilePath)) { - console.error('addIdentifierToNetwork Cannot find asset info file for network ' + networkCode + ' in directory ' + dir); + console.error('addIdentifierToNetwork Cannot find asset info file for network ' + networkCode + ' in location ' + networkInfoFilePath); return { addedIdentifier: false }; }