Skip to content

Commit e169251

Browse files
feat: add traceLevel input (#27)
Add traceLevel input to enable configurability of level of logging from UiPath CLI
2 parents 25631be + 07055bd commit e169251

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ inputs:
3333
projectKey:
3434
description: 'Project key in Test Manager. (Required if using Test Manager parameters)'
3535
required: false
36+
traceLevel:
37+
description: 'Trace level for test execution logs. Possible values are Verbose, Information, Warning, Error. Default is Warning.'
38+
required: false
39+
default: "Warning"
3640
outputs:
3741
testExecutionLinks:
3842
description: 'Outputs a comma-separated list of Orchestrator links for viewing test results'
@@ -173,7 +177,7 @@ runs:
173177
--out uipath \
174178
--result_path "$testResultFilePath" \
175179
--language en-US \
176-
--traceLevel "Warning" \
180+
--traceLevel "${{ inputs.traceLevel }}" \
177181
${{ steps.set_additional_parameters.outputs.additionalParameters }}
178182
179183
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)