I'm logging in access.log combined. Here is my apache2.conf part about Log
CustomLog ${APACHE_LOG_DIR}/access.log combined
LogFormat "%!200h %!200l %!200u %!200t \"%!200r\" %!200>s %!200O \"%!200{Referer}i\" \"%!200{User-Agent}i\"" combined
I added the !200 to prevent logging all 200 code but it's not working. It still log - - - - "-" - - "-" "-"
Any Idea how to stop apache from Logging OK 200 but log everything else.
I try googling a lot and the only thing I can found is on the official Apache Page.