Looking all over the net, cannot find a solution that works. What's wrong with the following as it doesn't prevent the logging I am trying to stop.
ErrorLog "logs/error_log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
SetEnvIf Remote_Addr "127\.0\.0\.1" dontlog
SetEnvIf Remote_Addr "::1" dontlog
SetEnvIf Remote_Addr "1\.2\.3\.4" dontlog
SetEnvIf Remote_Addr "5\.6\.7\.8" dontlog
SetEnvIf User-Agent ".*internal dummy connection.*" dontlog
CustomLog /var/log/httpd/access_log combined env=!dontlog
CustomLog /var/log/httpd/access_log combined
ErrorLog /var/log/httpd/error_log
<IfModule logio_module>
LogFormat "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access_log" combined
</IfModule>
Select all Open in new window
Ooops, that was a typo, left in there from the last edit.
Edited and working now, thanks for catching that. Sometimes you stare at something too long and you don't see the obvious.