TAG NAME log_access

Description This options allows you to control which requests gets logged to access.log
Build Option
Default
Usage
log_access allow|deny acl acl…
Default
none
Synopsis
Sometimes you will not be interested in certain access to be logged in the access.log file. This can be implemented using this tag as follows.

Arguments

allow/deny
Allow or deny on matching the acl
aclname
Access list to be allowed/denied on match

Example(s)
acl google url_regex ^http://www.google.co.in
log_access deny google
access_log /usr/local/Squid3.0pre3/var/logs/access.log common google
This will not log access to http://www.google.co.in into the access.log file.