Hello there,
When running a test suite via KRE command line from a jenkins pipeline, and checking console output, we get detailed run logs which is perfect, example:
Will print execution status every 15 second(s)
---------------------------------------------------------------------------------
Test Suites/My test suite - Chrome - 20260210_151655..
.........................................................................0/3(0%)
---------------------------------------------------------------------------------
2026-02-10 15:17:04.162 INFO c.k.k.c.l.logback.LogbackConfigurator - Logback default configuration initialized from: /opt/katalonstudio/configuration/org.eclipse.osgi/102/0/.cp/resources/logback/logback-execution.xml
2026-02-10 15:17:04.164 INFO c.k.k.c.l.logback.LogbackConfigurator - Logback custom configuration initialized from: /tmp/project/Include/config/log.properties
2026-02-10 15:17:04.521 INFO c.k.katalon.core.main.TestSuiteExecutor - START Test Suites/My test suite
etc....
2026-02-10 15:17:09.703 DEBUG testcase.My test case - 1: enhancedClick(findTestObject("App/input - Email"))
Whereas when running a test suite collection, we don’t have detailed logs any more, and only execution status, example:
Will print execution status every 15 second(s)
---------------------------------------------------------------------------------
My test suite collection.....................................0/6(0%)
---------------------------------------------------------------------------------
My test suite A - Chrome - 20260210_154617..
.........................................................................0/3(0%)
My test suite B - Chrome - 20260210_154618..
.........................................................................0/3(0%)
---------------------------------------------------------------------------------
Test suite My test suite A - Chrome - 20260210_154618 is ready to start at 15:46:30.421173572
Running: My test suite A - Chrome - 20260210_154618
---------------------------------------------------------------------------------
My test suite collection....................................3/6(50%)
---------------------------------------------------------------------------------
My test suite A - Chrome - 20260210_154617..
.......................................................................3/3(100%)
My test suite B - Chrome - 20260210_154618..
.........................................................................0/3(0%)
---------------------------------------------------------------------------------
I tried to add the following arugment to the docker run katalon command line with no effect: -runMode=console -consoleLog -logLevel=DEBUG
→ Is there a way to keep detailed execution logs in addition to execution status for test suite collection?