Missing Debug console log with use of SetUp annotation

Hi all,

I found that using SetUp annotation would hide Debug level console log.
That leads to missing debug messages under command line execution. Any way to show those logs again?

Sample test case

@com.kms.katalon.core.annotation.SetUp
def Setup() {
	WebUI.comment('SETUP')
}

def Method1() {
	WebUI.comment('Calling Method1')
}

WebUI.comment('Checkpoint 1')
Method1()
WebUI.comment('Checkpoint 2')

With SetUp annotation

Without SetUp annotation

1 Like

We will investigate the issue. Thank you for the report.

@Alice