Fix log msg in channels.api.ts

Co-authored-by: softsimon <softsimon@users.noreply.github.com>
This commit is contained in:
wiz 2022-07-22 00:04:02 +02:00 committed by GitHub
parent 9698339488
commit 7bbfc7872b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}