//Do not forget to setup the handler! BugSenseHandler.setup(MyActivity.this, YOUR_API_KEY); //Different ways to scratch the logs //Log everything BugSenseHandler.readLogs(); //Log last 100 messages BugSenseHandler.readLogs(100); //Log all the messages with priority level "warning" and higher, on all tags. BugSenseHandler.readLogs("*:W"); //Log the latest 100 messages with priority level "warning" and higher, on all tags. BugSenseHandler.readLogs(100, "*:W"); //Log the latest 100 messages with priority level "warning" and higher, on all tags. BugSenseHandler.readLogs(100, "*:W"); //Log all the messages from the ActivityManager and the Debug and higher of your application. BugSenseHandler.readLogs(400, "ActivityManager:I MyApp:D *:S");