find -name '*.log' -type f -print0 | xargs --null perl -pi -e 's/redhat/SUSE/'
The you can tweak the first part of the command (find) to point it to the files which have to be changed. redhat will be replaced with SUSE for all log files in this case.