ssh to mikrotik and print log with spaces not working

I have configured password less login to mikrotik. Now I want to print an log entry in mikrotik LOG by ssh from my linux box but its not letting me print any text if it contains spaces

For example this is not working

ssh admin@192.168.1.1 /log warning "hi hello"
expected end of command (line 1 column 17)

I have also tried this

ssh admin@192.168.1.1 :put [:log warning "hi hello"]

but same error

and if I print only “hi” it works. so how can I add SPACES ?

ssh admin@192.168.1.1 /log warning \"hi hello\"

Thanks a lot. It worked Gr8!