System Logging

Hi, I have logging all connections in a remote log server, all goes OK, all connections logged in the remote server, but in Mikrotik Log show all connections and can´t see Mikrotik messages, but I want only show info, critical, error and warning logs from Mikrotik… here is the code for logging, how can I continue logging tcp and udp connections without show it in Log menu?

192.168.1.110 is the address for my remote log server and “WAN” is the out to internet

/ip firewall filter
add action=log chain=forward comment="Log UDP" dst-address-list=!192.168.1.110 in-interface="WAN" \
    log-prefix=conexiones_UDP protocol=udp
add action=log chain=forward comment="Log TCP" in-interface="WAN" log-prefix=conexiones_TCP \
    protocol=tcp
	
/system logging
add action=logUDP prefix=conexiones_UDP topics=!firewall
add action=logTCP prefix=conexiones_TCP topics=!firewall
	
/system logging action
set 0 memory-lines=100
set 1 disk-lines-per-file=100
set 3 remote=192.168.1.110
add bsd-syslog=yes name=logUDP remote=192.168.1.110 syslog-facility=local1 target=remote
add bsd-syslog=yes name=logTCP remote=192.168.1.110 syslog-facility=local0 target=remote

Thanks!!