If you want to your grep results to only show lines not matching the pattern use the -v switch. You can also use --invert-match
-v
--invert-match
fgrep -v 127.0.0.1 file.log
The above prints lines from file.log that do not contain 127.0.0.1
file.log
127.0.0.1