How to hide images request in my Apache's log?
Answer:
Open the Apache config, e.g. vi httpd.conf
Add the following lines around the log configurations, e.g.
...
SetEnvIfNoCase Request_URI "\.gif$|\.png$|\.jpg$" DONT_LOG
CustomLog access.log common env=!DONT_LOG
...