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 fd35c8f4ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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