ActionWebService Logging - Huge!

Hi,

I am uploading files to my application using ActionWebService. Looking
at my production.log I noticed that the uploaded base64 data is being
included. This is causing the log file to be huge and is something that
I would like to avoid.

What is the best way to turn off logging for ActionWebService?

Thanks,
GiantCranes

To answer my own question, the following will remove the Envelope param
from logging:

class ApplicationController < ActionController::Base
filter_parameter_logging :Envelope
end