Removing one logging entry from production log

On a Rails 3 project, I am just using the :info level for the production log, and that is nearly perfect for my purposes.

Except, it is cluttered with a bunch of lines like this:

Rendered common/_thumbnail.html.erb (1.5ms)

How can I surgically stop logging that line, but still leave the general logging level at :info?

Thanks!