價格:免費
更新日期:2016-01-03
檔案大小:1.4M
目前版本:1.0
版本需求:Android 4.0 以上版本
官方網站:http://mebonix.com
Email:apps@mebonix.com
聯絡地址:9-A Radhey Puri Extn-II, New Delhi -110051 (India)
LogLogger is a Android Logging Application, used to check all the Logs, Exceptions, Errors, Outputs, Responses etc on the.device itself.
Features :
- You can view any type of data in LogLogger with just one command.
- Easy to Use.
- You can also mail your Log to your personal Email Id.
- You can search for a particular keyword from the list of Logs.
- Auto formatting for JSON Strings.
How to use :
1. Install this Application in your device.
2. Add this method in your code
public static void sendLogsToLogger(Context context, String logs){
Intent sendIntent = new Intent();
sendIntent.setAction("SEND_LOGS_TO_LOGGER");
sendIntent.putExtra("LOG_DATA", logs);
sendIntent.putExtra("APP_NAME", context.getPackageName());
context.sendBroadcast(sendIntent);
}
3. Whenever you have to send logs to logger app, you just have to call this method and have to pass the context and String which contains log data.
4. Now whenever you open LogLogger Application it will show your Log.