{"id":15037921,"url":"https://github.com/siddhantmishra1305/loggy","last_synced_at":"2026-02-27T17:08:10.975Z","repository":{"id":56031805,"uuid":"314652854","full_name":"siddhantmishra1305/Loggy","owner":"siddhantmishra1305","description":"Loggy is an iOS Logging framework . It creates a new log file every 24 hrs. It has a dedicated Mac OS application which shows analytics and a detailed log report.","archived":false,"fork":false,"pushed_at":"2020-12-14T08:57:40.000Z","size":1168,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-03-14T19:53:39.833Z","etag":null,"topics":["analytics","cocoapods","crash-reporting","error-reporting","framework","ios","ioslogging","library","loganalytics","logging","loggy","logs","macos","monitoring","pod","report","swift","swift4","swift5"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/siddhantmishra1305.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-20T19:40:43.000Z","updated_at":"2024-03-05T13:49:11.000Z","dependencies_parsed_at":"2022-08-15T11:50:24.246Z","dependency_job_id":null,"html_url":"https://github.com/siddhantmishra1305/Loggy","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantmishra1305%2FLoggy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantmishra1305%2FLoggy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantmishra1305%2FLoggy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantmishra1305%2FLoggy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddhantmishra1305","download_url":"https://codeload.github.com/siddhantmishra1305/Loggy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243410445,"owners_count":20286395,"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":["analytics","cocoapods","crash-reporting","error-reporting","framework","ios","ioslogging","library","loganalytics","logging","loggy","logs","macos","monitoring","pod","report","swift","swift4","swift5"],"created_at":"2024-09-24T20:36:21.281Z","updated_at":"2026-02-27T17:08:10.930Z","avatar_url":"https://github.com/siddhantmishra1305.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\" \u003e\n  \u003cimg src=\"https://github.com/siddhantmishra1305/Loggy/blob/master/icon-256x256.png\" title=\"Loggy logo\" float=left\u003e\n\u003c/p\u003e\n\n# Loggy\n[![Pod Version](https://img.shields.io/badge/version-1.0.0-blue)]()\n[![Pod Platform](https://img.shields.io/badge/platform-ios-brightgreen)]()\n[![Pod License](https://img.shields.io/hexpm/l/plug)](https://opensource.org/licenses/Apache-2.0)\n\n**Loggy** is a simple logging framework for iOS with a dedicated mac application to view analytics and log report.\n\n### Installation\n\n### CocoaPods \n\n```ruby\nplatform :ios, '9.0'\n\ntarget 'SampleTarget' do\n  use_frameworks!\n  pod 'Loggy'\nend\n```\n\n### Usage\n\n1. You can simply use `import Loggy` to get started.\n\n2. Add `Loggy.setup` to `application:didFinishLaunchingWithOptions:` \n\n```swift\n func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -\u003e Bool {\n        // Override point for customization after application launch.\n        Loggy.setup()\n        return true\n }\n```\n\n3. To log use `Loggy.log(value: \"Nice information\", type: .Info)`\n\n```swift\n  Loggy.log(value: \"Nice information\", type: .Info)\n  Loggy.log(value: \"Exception\", type: .Error)\n  Loggy.log(value: \"log system info\", type: .Verbose)\n  Loggy.log(value: \"Warning recieved\", type: .Warning)\n```\n4. Get Path to logfile\n```swift\n  Loggy.logFilePath\n```\n\n### Mac app to view analytics\n\n[**Loggy Analytics**](https://github.com/siddhantmishra1305/LoggyAnalytics)\n\n\n1. **Import** the log file.\n\u003cp align=\"left\" \u003e\n  \u003cimg width=\"430\" height=\"300\" src=\"https://github.com/siddhantmishra1305/Loggy/blob/master/Import.png\" title=\"Import log file\" float=left\u003e\n\u003c/p\u003e\n\n2. **Dashboard** tab shows a consolidated report of errors,warning etc.\n \u003cp align=\"left\" \u003e\n  \u003cimg width=\"430\" height=\"300\" src=\"https://github.com/siddhantmishra1305/Loggy/blob/master/Dashboard.png\" title=\"Dashboard\" float=left\u003e\n\u003c/p\u003e\n\n3. **Log Details** shows detailed information such as **filename**, **function name** , **line number** and **time stamp**.\n\u003cp align=\"left\" \u003e\n  \u003cimg width=\"430\" height=\"300\" src=\"https://github.com/siddhantmishra1305/Loggy/blob/master/LogDetails.png\" title=\"Log Report\" float=left\u003e\n\u003c/p\u003e\n\n**Note:** It automatically creates a new log file every 24 hrs.\n\n## Coming Soon\n- Carthage Support\n- macOS,tvOS and watchOS support\n\n## Author\n- [Siddhant Mishra](https://www.linkedin.com/in/siddhant-mishra-722834105)\n\n## License\n- Loggy is available under the Apache 2 license. See the [LICENSE file](https://github.com/siddhantmishra1305/Loggy/blob/master/LICENSE).\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhantmishra1305%2Floggy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhantmishra1305%2Floggy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhantmishra1305%2Floggy/lists"}