Disable logging in a script

I have a script that send a file with ftp.
I use the fetch command.
I run the script every minute with the Scheduler.

In the log I get every minute a line with the text ‘fetch: file “ppp_active.txt” created’
How can I use the fetch command in my script without logging ?

Regards
Marcel

I don’t know about turning it off, but you can redirect and limit it.

See this manual page on the wiki: http://wiki.mikrotik.com/wiki/Manual:System/Log#Logging_configuration

The key is probably to create a custom action (say “smallMemory” with a limit of maybe 5 lines) and redirect script output to it. Or maybe use echo to send them to the console and set remember=no. There are a couple tutorials on the wiki that talk more about logging.