SDK Logging
Monday, September 30, 2019 at 11:00amHey team,
One of our customer is asking do we have some logging capabilities in our SDK? They are using Java SDK and they want to know what API calls have been eventually sent out. They are already aware of using Fiddler to monitor HTTP traffic, while what they want is the logging capability that they can utilize in their production environment, instead of troubleshooting purpose.
Thanks a lot!
Reply to: SDK Logging
Tuesday, October 1, 2019 at 06:10amstatic { System.setProperty("java.util.logging.config.file", "./sources/logging.properties"); }With ConsoleHandler, they will be able to see the logs printed out in the console. Hope this could help! Duo