We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e57a55c commit ad046f9Copy full SHA for ad046f9
src/warnet/deploy.py
@@ -204,6 +204,8 @@ def check_logging_required(directory: Path):
204
return True
205
if default_file.get("metricsExport", False):
206
207
+ if default_file.get("lnd", {}).get("metricsExport"):
208
+ return True
209
210
# check to see if individual nodes have logging enabled
211
network_file_path = directory / NETWORK_FILE
@@ -216,6 +218,8 @@ def check_logging_required(directory: Path):
216
218
217
219
if node.get("metricsExport", False):
220
221
+ if node.get("lnd", {}).get("metricsExport"):
222
223
224
return False
225
0 commit comments