logging to remote host is not work

Logging to a remote host does not work.
Tested on different syslog servers. From Cisco everything comes, from Mikrotik no.
What is wrong ?

/system logging action add name=syslog remote=10.10.22.2 target=remote
/system logging add action=syslog topics=info,critical,warning,error

Packets not send to 514 port
firewall.PNG

This is bug or feature ?

Not work

/system logging 
add action=syslog topics=info,critical,warning,error

Work

/system logging
add action=syslog topics=critical
add action=syslog topics=warning
add action=syslog topics=error

It is a feature. When you specify multiple keywords on a single logging action, it only matches entries with ALL those keywords (AND function).
This is obviously not possible with info,critical,warning,error because always only one of those keywords appears in a log entry.
But you could use something like add action=syslog topics=info,l2tp
To log all loglevels as you want you need multiple action lines.

Thanks, didn’t know.