{"id":13748605,"url":"https://github.com/jgilfelt/GhostLog","last_synced_at":"2025-05-09T11:30:57.530Z","repository":{"id":12852306,"uuid":"15528214","full_name":"jgilfelt/GhostLog","owner":"jgilfelt","description":"Android app that displays the logcat buffer in a system overlay window","archived":false,"fork":false,"pushed_at":"2014-12-03T13:44:34.000Z","size":1095,"stargazers_count":384,"open_issues_count":5,"forks_count":59,"subscribers_count":30,"default_branch":"master","last_synced_at":"2024-11-13T07:12:54.748Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://play.google.com/store/apps/details?id=com.readystatesoftware.ghostlog","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jgilfelt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-12-30T13:24:03.000Z","updated_at":"2024-08-31T13:36:10.000Z","dependencies_parsed_at":"2022-08-30T12:31:13.686Z","dependency_job_id":null,"html_url":"https://github.com/jgilfelt/GhostLog","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgilfelt%2FGhostLog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgilfelt%2FGhostLog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgilfelt%2FGhostLog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgilfelt%2FGhostLog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jgilfelt","download_url":"https://codeload.github.com/jgilfelt/GhostLog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224406122,"owners_count":17305725,"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-08-03T07:00:45.491Z","updated_at":"2024-11-15T23:30:31.107Z","avatar_url":"https://github.com/jgilfelt.png","language":"Java","funding_links":[],"categories":["Java","Libs"],"sub_categories":["\u003cA NAME=\"Utility\"\u003e\u003c/A\u003eUtility"],"readme":"Ghost Log\n=========\n\nGhost Log is an Android application that displays the device logcat buffer in a system overlay window.\n\n![screenshot](https://raw.github.com/jgilfelt/GhostLog/master/screens.jpg \"screenshot\")\n\n\u003ca href=\"https://play.google.com/store/apps/details?id=com.readystatesoftware.ghostlog\"\u003e\n  \u003cimg alt=\"Android app on Google Play\"\n       src=\"https://developer.android.com/images/brand/en_app_rgb_wo_60.png\" /\u003e\n\u003c/a\u003e\n\n**NOTE: Device root (superuser) access is required to read system logs on Android 4.1 and above.**\n\nNon-root users can still use Ghost Log with their own apps via intent integration - see below.\n\nFeatures:\n\n* Persistent logcat display as a system overlay\n* Customisable log filters and display options\n* Auto filter by the current foreground Activity process\n* Quick access to pause/play, clear \u0026 share functions via rich notification\n* Integration support for non-root devices\n\n\nNon-root Integration\n--------------------\n\nDevelopers can use Ghost Log to display log messages generated by their own apps on non-rooted devices via a broadcast intent interface. This is currently in an experimental phase.\n\nIntegration will enable your app to receive messages from the Ghost Log app to start and stop a service inside your app which will monitor and broadcast all log output generated by your application processes back to Ghost Log for display.\n\n**NOTE: You should enable this integration for debug builds only to avoid exposing log output to third parties in production.**\n\n#### Gradle\n\nIf you are using the Gradle build system, simply add the following dependency in your `build.gradle` file:\n\n```groovy\ndependencies {\n    debugCompile 'com.readystatesoftware.ghostlog:ghostlog-integration:+@aar'\n}\n```\n\nUsing `debugCompile` (recommended) ensures the integration library is never compiled into a release build.\n\n#### Ant/Eclipse\n\nIf you are using the old build system, download and place the integration library [JAR][1] inside your project `libs` folder and add the following to your `AndroidManifest.xml` (inside the `\u003capplication\u003e` tag):\n\n```xml\n\u003c!--Receives intents from Ghost Log app to start \u0026 stop the integration service--\u003e\n\u003creceiver android:name=\"com.readystatesoftware.ghostlog.integration.IntegrationReceiver\" \n    android:permission=\"com.readystatesoftware.ghostlog.permission.READ_LOGS\" \u003e\n    \u003cintent-filter\u003e\n        \u003caction android:name=\"com.readystatesoftware.ghostlog.integration.COMMAND\" /\u003e\n    \u003c/intent-filter\u003e\n\u003c/receiver\u003e\n\u003c!--Reads logs and broadcasts them to Ghost Log--\u003e\n\u003cservice android:name=\"com.readystatesoftware.ghostlog.integration.IntegrationService\" /\u003e\n```\n\nCredits\n-------\n\nAuthor: [Jeff Gilfelt](https://github.com/jgilfelt)\n\nUses elements from [CatLog](https://github.com/nolanlawson/Catlog) by [Nolan Lawson](https://github.com/nolanlawson)\n\nLicense\n-------\n\n    Copyright (C) 2014 readyState Software Ltd\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n [1]: https://search.maven.org/remote_content?g=com.readystatesoftware.ghostlog\u0026a=ghostlog-integration\u0026v=LATEST\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgilfelt%2FGhostLog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjgilfelt%2FGhostLog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgilfelt%2FGhostLog/lists"}