Grep Excluding Unwanted Keyword

For example, I want to grep an access.log file for lines with overview in it but excluding lines which contain media. I can pipe the command with grep -v as below

tail -f /home/www-data/beachfrontclub/mapservice/src/log/access.log | grep -v media | grep overview