Error in simple script

Hello, can somebody help me with this script ?

:if ( [/interface bridge filter [find src-address=10.10.10.10/32]] = true) do={:log info "IP is here";}

it didnt write info in log and didnt work neither this

:if [/interface bridge filter [find src-address=10.10.10.10/32]] do={:log info "IP is here";}

thank you

Something like this would work:

:if ([:len [/interface bridge filter find src-address=“10.10.10.10/32”]] >= 1) do={:log info “IP is here”;}