Test-filters should display skip-files-larger-than by default

I’m using Duplicati 2.0.4.5_beta_2018-11-28.

While testing filters before running actual backup I noticed that --skip-files-larger-than is ignored in the output unless --console-log-level=profiling is enabled. This seems counter-intuitive as for the end user it looks like --skip-files-larger-than doesn’t work.

Without --console-log-level=profiling:

Duplicati.CommandLine.exe test-filters "D:\test\\" --skip-files-larger-than=1GB | grep -i "64\.iso"
Including path as no filters matched: D:\test\Win10_1803_English_x64.iso

With --console-log-level=profiling:

Duplicati.CommandLine.exe test-filters "D:\test\\" --skip-files-larger-than=1GB --console-log-level=profiling | grep -i "64\.iso"
Including path as no filters matched: D:\test\Win10_1803_English_x64.iso
Including path as no filters matched: D:\test\Win10_1803_English_x64.iso
Excluding file due to size: D:\test\Win10_1803_English_x64.iso (3.46 GB)

Shouldn’t be “Excluding file due to size” visible by default without profiling?