Development environment used
Problem Description
The logFilePatterns property in a result task does not work with a glob pattern.
The property is translated into a find command using the -name option,
The ** pattern is not processed by the -name option find command as in a true glob pattern.
See File name generation
Observed behavior
The following statement does not find .log files more than one subfolder level deep:

2026-09-12T15:10:46.507Z: CRRZG5283I Executing SSH command:
/bin/find /u/J070188/DBB -type f -name '/u/J070188/DBB/LOGS/S9TL1A.cbl/**/*.json'
...
2026-09-12T15:10:48.952Z: CRRZG5283I Executing SSH command:
/bin/find /u/J070188/DBB -type f -name '/u/J070188/DBB/LOGS/S9TL1A.cbl/**/*.log'
...
2026-09-12T15:10:51.340Z: CRRZG5283I Executing SSH command:
/bin/find /u/J070188/DBB -type f -name '/u/J070188/DBB/LOGS/S9TL1A.cbl/**/*.html'
The pattern {text1,text2...} is not supported.
2026-09-12T15:41:19.235Z: CRRZG5283I Executing SSH command:
/bin/find /u/J070188/DBB -type f -name '/u/J070188/DBB/LOGS/S9TL1A.cbl/**/*.{json,log,html}'
2026-09-12T15:41:21.308Z: CRRZG5266I Total log files found: 0
Expected behavior
Development environment used
Problem Description
The
logFilePatternsproperty in aresulttask does not work with a glob pattern.The property is translated into a
findcommand using the-nameoption,The
**pattern is not processed by the-nameoption find command as in a true glob pattern.See File name generation
Observed behavior
The following statement does not find .log files more than one subfolder level deep:

The pattern
{text1,text2...}is not supported.Expected behavior