I am using .NET library of the google Picasa and when I execute the below code.
Dim requestFactory As GOAuth2RequestFactory = RefreshAuthenticate(accessToken, refreshToken)
Dim service As New PicasaService("test")
service.RequestFactory = requestFactory
Dim query As New AlbumQuery(PicasaQuery.CreatePicasaUri("default"))
Dim feed As PicasaFeed = service.Query(query)
It generates HELL of logging (I guess using Trace.Write). Our application uses trace listeners and save that tracing to text files (log files). but with this single call, over 10s of Mbs log is generated. I want to turn off the logging for Google Picasa (preferably with code).
I see an article on Debugging Google Data API Clients: Exploring Traffic from Within your Program But that doesn't say anything about turning that off.
Any help is greatly appreciated. Thank you