The file /etc/syslog.conf controls what messages get logged and where.
You can edit this file to reduce the log level.
Each line in the file consists of a number of message levels followed by the path of the file the messages should be logged to.
For example, a typical system.log entry might look like:
*.notice;*.info;authpriv,remoteauth,ftp.none;kern. debug;mail.crit /var/log/system.log
meaning all ".notice', ".info", authpriv, and remoteauth messages, as well as generic ftp messages (ftp.none), kernel debug messages (kern.debug), and critical mail messages (mail.crit) are logged to /var/log/system.log
The trouble is that 'fix-prebinding' messages are, I believe, in the category 'kern.debug'.
Disabling this category (by removing the entry from this line) will also filter other kernel messages that might be more important.
If you truly want to remove these messages, remove the kern.debug from the /var/log/system.log line, then:
killall -HUP syslog
to have the changes take effect.
Alternatively, you can try to fix the problem that's causing the messages to log in the first place. Prebinding issues can usually be fixed by running:
sudo update_prebinding -root /
in a terminal window and letting it do it's job.