For filtering of log

Hello, all

Although log such as the following when you add all at once to the address list, etc. Script is output, I wonder Is there a way to suppress it?

/system logging
add action=memory topics=!system,!info

15:49:56 system, info address list entry removed by admin
15:49:56 system, info address list entry removed by admin
15:49:56 system, info address list entry removed by admin
15:49:56 system, info address list entry removed by admin
15:49:56 system, info address list entry removed by admin

Best regards.

I had the same issue, but not found any solution to filter the logs. But I found the solution that we can use inside the script.

# Disable Logging so each add and remove isn't in the system log, we turn it back on at the end
:log debug "Disabling system Logging";
/system logging disable

.... {your code here} ....

# Enable the Logging
:log debug "Enabling system logging";
/system logging enable

Hello,

You could try this, but it may hide other system log messages you still want. In a nutshell edit the default ‘info’ topic and add an additional topic ‘system’ but in this case, negate it so that it ignores all info-system messages.

Check the number of the logging item, to make sure you are editing the correct one.

/system logging
set 0 action=memory topics=info,!system

Capture222.PNG