Update Log Level of Logs in Report Directory?

I am attempting to update the log level of the generated execution logs in the Report directory.
Unfortunately, these logs display sensitive text as plain text, exposing passwords. I would like to be able to suppress execution steps from appearing in these logs to prevent this from happening.

I thought updating the log level in Include/config/log.properties would fix this, but it does not appear to change the generated logs in the Report directory. Is there a way to configure these reports to display logs of a stricter log level?

Operating System:

Windows 10 Enterprise
Version 1909
OS Build 18363.657

Katalon Studio Version:

Katalon_Studio_Windows_64-7.2.5
and
Katalon_Studio_Windows_64-7.2.1

Environment (for Web testing):

Chrome 80.0.3987.122

Steps to reproduce:

  1. Update logging.level.com.kms in Include/config/log.properties to logging.level.com.kms=ERROR
  2. Set Project > Execution > Log executed test steps to Disable
  3. Run Test Suite

Expected Behavior:

Only logs with the log level Error should be logged and added to the generated reports.

Actual Behavior:

The Console does not display executed steps, as expected.

In the Log Viewer, when Tree View is enabled, execution steps do not appear.
image

In the Log Viewer, when Tabular View is enabled, execution steps do appear.
image

The execution0.log also does display the execution steps.
Here is a snippet from my log:

<record>
  <date>2020-02-28T10:09:55</date>
  <millis>1582906195797</millis>
  <sequence>139</sequence>
  <level>PASSED</level>
  <class>com.kms.katalon.core.logging.XmlKeywordLogger</class>
  <method>logMessage</method>
  <thread>1</thread>
  <message>Browser is opened with url: &amp;apos;&amp;apos;</message>
  <nestedLevel>1</nestedLevel>
</record>
<record>
  <date>2020-02-28T10:09:56</date>
  <millis>1582906196265</millis>
  <sequence>142</sequence>
  <level>PASSED</level>
  <class>com.kms.katalon.core.logging.XmlKeywordLogger</class>
  <method>logMessage</method>
  <thread>1</thread>
  <message>Navigate to &amp;apos;http://localhost:64543/&amp;apos; successfully</message>
  <nestedLevel>1</nestedLevel>
</record>
<record>
  <date>2020-02-28T10:09:56</date>
  <millis>1582906196802</millis>
  <sequence>153</sequence>
  <level>PASSED</level>
  <class>com.kms.katalon.core.logging.XmlKeywordLogger</class>
  <method>logMessage</method>
  <thread>1</thread>
  <message>Text &amp;apos;MDAWMDA0MQ&amp;apos; is set on object &amp;apos;Object Repository/WebUI/Pages/Group/Page_Groups/input_Search_Filter&amp;apos;</message>
  <nestedLevel>1</nestedLevel>
</record>
1 Like