amazon-archives / aws-sdk-unity

ARCHIVED: The aws sdk for unity is now distributed as a part of aws sdk for dotnet:
https://github.com/aws/aws-sdk-net
Other
105 stars 43 forks source link

Flag to stop Debug spam in console #109

Closed designzoo-peter closed 8 years ago

designzoo-peter commented 8 years ago

There is a lot of stuff being spat out which I have no use for and don't want. Do I have to comment out the print statements in the different Logging classes?

designzoo-peter commented 8 years ago

Just noticing the public overrides at the bottom of UnityDebugLogger. I guess I was looking for a more central place that all the possible loggers would share, not just the UnityDebugLogger.

johnnyhoffman commented 8 years ago

You can configure logging in awsconfigs.xml, e.g.

<logging
    logTo="None" ...

or directly in your code, e.g:

loggingConfig.LogTo = LoggingOptions.None;
PLockhart commented 8 years ago

Awesome thanks