{"id":18763723,"url":"https://github.com/inloop/easylog","last_synced_at":"2025-12-06T04:30:22.076Z","repository":{"id":77722204,"uuid":"50661918","full_name":"inloop/easylog","owner":"inloop","description":"A simple wrapper for android.util.Log which adds useful features such as: calling method name added to each log, log message parameters, tag automatically added, option to disable all logs...","archived":false,"fork":false,"pushed_at":"2016-02-07T15:02:32.000Z","size":91,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-12-29T05:26:21.851Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/inloop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-29T12:45:31.000Z","updated_at":"2022-08-10T02:42:08.000Z","dependencies_parsed_at":"2023-04-28T15:57:20.237Z","dependency_job_id":null,"html_url":"https://github.com/inloop/easylog","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inloop%2Feasylog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inloop%2Feasylog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inloop%2Feasylog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inloop%2Feasylog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inloop","download_url":"https://codeload.github.com/inloop/easylog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239661864,"owners_count":19676411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T18:27:15.355Z","updated_at":"2025-12-06T04:30:21.727Z","avatar_url":"https://github.com/inloop.png","language":"Java","readme":"EasyLog\n----\n\nEasyLog is \u003ca href=\"http://developer.android.com/reference/android/util/Log.html\"\u003eandroid.util.Log\u003c/a\u003e wrapper making logging even easier.\n\nBasic Usage\n-----\n\nUsage of EasyLog is simple. First you have to configure it. Best place is `Application.onCreate()` method.\n\n```Java\n    @Override\n    public void onCreate() {\n        super.onCreate();\n        EasyLog.init(this, BuildConfig.DEBUG, \"SampleApp\");\n    }\n```\n\nEasyLog has couple of static methods:\n\n```Java\n    EasyLog.v(\"Hello from MainActivity\");\n\n    List args = Arrays.asList(\"one\", \"two\");\n\n    EasyLog.d(\"Called with %d arguments\", args.size());\n    EasyLog.d(\"Arguments are %s\", args);\n    EasyLog.e(\"Error occurred: %s\", new Exception());\n```\n\nOutput of those sample method is:\n\n```\n01-29 15:56:59.040 32228-32228/eu.inloop.easylogsample V/SampleApp: main                          eu.inloop.easylogsample.MainActivity.onCreate(): Hello from MainActivity\n01-29 15:56:59.040 32228-32228/eu.inloop.easylogsample D/SampleApp: main                          eu.inloop.easylogsample.MainActivity.onCreate(): Called with 2 arguments\n01-29 15:56:59.040 32228-32228/eu.inloop.easylogsample D/SampleApp: main                          eu.inloop.easylogsample.MainActivity.onCreate(): Arguments are [one, two]\n01-29 15:56:59.040 32228-32228/eu.inloop.easylogsample E/SampleApp: main                          eu.inloop.easylogsample.MainActivity.onCreate(): Error occurred: null\n                                                                    java.lang.Exception\n                                                                        at eu.inloop.easylogsample.MainActivity.onCreate(MainActivity.java:24)\n                                                                        at android.app.Activity.performCreate(Activity.java:6237)\n                                                                        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)\n                                                                        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)\n                                                                        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)\n                                                                        at android.app.ActivityThread.-wrap11(ActivityThread.java)\n                                                                        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)\n                                                                        at android.os.Handler.dispatchMessage(Handler.java:102)\n                                                                        at android.os.Looper.loop(Looper.java:148)\n                                                                        at android.app.ActivityThread.main(ActivityThread.java:5417)\n                                                                        at java.lang.reflect.Method.invoke(Native Method)\n                                                                        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)\n                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)\n```\n\nArguments\n-----\nBasically it uses the same format as `java.util.Formatter`. \n\nDownload\n--------\n\nEasylog is published in \u003ca href=\"https://bintray.com/bintray/jcenter\"\u003eJCenter repo\u003c/a\u003e. So you can simply include it \nin your project by following line of code in `build.gradle`.\n \n```groovy\ncompile 'eu.inloop:easylog:0.6.+'\n```\n\nCredits\n-------\n\nCode is inspired by class `com.scvngr.levelup.core.util.LogManager` from \u003ca href=\"https://github.com/TheLevelUp/levelup-sdk-android\"\u003ehttps://github.com/TheLevelUp/levelup-sdk-android\u003c/a\u003e license under Apache 2.0 License.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finloop%2Feasylog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finloop%2Feasylog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finloop%2Feasylog/lists"}