From 7bbfc7872ba4b6e189ff0a0e8690c482ebd885ad Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 22 Jul 2022 00:04:02 +0200 Subject: [PATCH] Fix log msg in channels.api.ts Co-authored-by: softsimon --- backend/src/api/explorer/channels.api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/explorer/channels.api.ts b/backend/src/api/explorer/channels.api.ts index 15e9bb746..f0d7dc56b 100644 --- a/backend/src/api/explorer/channels.api.ts +++ b/backend/src/api/explorer/channels.api.ts @@ -32,7 +32,7 @@ class ChannelsApi { row.node2_public_key, row.node2_alias, row.node2_longitude, row.node2_latitude, row.capacity]); } catch (e) { - logger.err('$getAllChannels error: ' + (e instanceof Error ? e.message : e)); + logger.err('$getAllChannelsGeo error: ' + (e instanceof Error ? e.message : e)); throw e; } }