using `find` to find all files you want to rename and running an `exec` script:
`
find /main/rel -name file.log -exec mv '{}' '{}.OLD' \;
this will run the `mv` cmd on all found files, the `{}` (escaped so the shell doesn't do weird things) will be replaced by the filename.