Merge pull request #2075 from mempool/simon/logger-lightning

Add lightning to logger
This commit is contained in:
wiz 2022-07-11 18:18:11 +02:00 committed by GitHub
commit 83e388338a

View File

@ -73,6 +73,9 @@ class Logger {
}
private getNetwork(): string {
if (config.LIGHTNING.ENABLED) {
return 'lightning';
}
if (config.BISQ.ENABLED) {
return 'bisq';
}