Skip to content

Commit ef7f540

Browse files
committed
[nodes] SfMFilter: Add verbose level attribute
1 parent 41c5b3e commit ef7f540

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

meshroom/nodes/aliceVision/SfMFilter.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ class SfMFilter(desc.CommandLineNode):
3232
r'".*\/(.*?)_.*\.\w{3}"',
3333
value=r'.*\/(.*?)\.\w{3}',
3434
),
35+
desc.ChoiceParam(
36+
name="verboseLevel",
37+
label="Verbose Level",
38+
description="Verbosity level (fatal, error, warning, info, debug, trace).",
39+
values=VERBOSE_LEVEL,
40+
value="info",
41+
),
3542
]
3643

3744
outputs = [

0 commit comments

Comments
 (0)