{"id":19806861,"url":"https://github.com/goldenm-software/layrz_logging","last_synced_at":"2026-04-21T03:31:35.635Z","repository":{"id":257788635,"uuid":"860514083","full_name":"goldenm-software/layrz_logging","owner":"goldenm-software","description":"Logging system for Flutter applications","archived":false,"fork":false,"pushed_at":"2025-09-16T18:24:17.000Z","size":57,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T12:37:19.982Z","etag":null,"topics":["flutter","layrz","logging"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/layrz_logging","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/goldenm-software.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-20T15:21:06.000Z","updated_at":"2025-10-17T22:38:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"2e785736-35bc-452a-aa73-0dee8be0dac6","html_url":"https://github.com/goldenm-software/layrz_logging","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"167f36f432bf8adae62fbda66242606de4d065ab"},"previous_names":["goldenm-software/layrz_logging"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/goldenm-software/layrz_logging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goldenm-software%2Flayrz_logging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goldenm-software%2Flayrz_logging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goldenm-software%2Flayrz_logging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goldenm-software%2Flayrz_logging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goldenm-software","download_url":"https://codeload.github.com/goldenm-software/layrz_logging/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goldenm-software%2Flayrz_logging/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32075222,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T02:38:07.213Z","status":"ssl_error","status_checked_at":"2026-04-21T02:38:06.559Z","response_time":128,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["flutter","layrz","logging"],"created_at":"2024-11-12T09:08:42.982Z","updated_at":"2026-04-21T03:31:35.618Z","avatar_url":"https://github.com/goldenm-software.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# layrz_logging\n\n[![Pub version](https://img.shields.io/pub/v/layrz_logging?logo=flutter)](https://pub.dev/packages/layrz_logging)\n[![popularity](https://img.shields.io/pub/popularity/layrz_logging?logo=flutter)](https://pub.dev/packages/layrz_logging/score)\n[![likes](https://img.shields.io/pub/likes/layrz_logging?logo=flutter)](https://pub.dev/packages/layrz_logging/score)\n[![GitHub license](https://img.shields.io/github/license/goldenm-software/layrz_logging?logo=github)](https://github.com/goldenm-software/layrz_logging)\n\nManaging errors and logs can be a pain, but with `layrz_logging` you can easily manage your logs and errors in your Flutter applications.\nSupports all of the platforms that Flutter supports.\n\n## Usage\nTo use this plugin, add `layrz_logging` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/packages-and-plugins/using-packages).\n\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n  layrz_logging: ^latest_version\n```\n\nThen you can import the package in your Dart code:\n\n```dart\nimport 'package:layrz_logging/layrz_logging.dart';\n\n/// on your void main() function\nvoid main() {\n  WidgetsBindingInstance.ensureInitialized();\n  Log.ensureInitialized(); // Be careful, this method should be invoked after `WidgetsBindingInstance.ensureInitialized()`\n\n  runApp(MyApp());\n}\n\n/// And, wherever you want to log something\nLog.debug(\"Hello, World!\"); // Debug error level\nLog.info(\"Hello, World!\"); // Info error level\nLog.warning(\"Hello, World!\"); // Warning error level\nLog.error(\"Hello, World!\"); // Error error level\nLog.fatal(\"Hello, World!\"); // Fatal error level\n\n/// Also, Log is capable to handle all flutter or platform-specific errors without doing anything\n\n/// You can also get the logs\n///\n/// On native platforms (Android, iOS, macOS, Windows, Linux) the logs are saved in a file\n/// On web platform, the logs are stored on an `List`, and limited to 100 records\nList\u003cString\u003e logs = await Log.fetchLogs();\n\n/// If you upgraded from v1.1 or below, the LayrzLogging class is still exists, but on backward compatibility mode\nLayrzLogging.debug(\"Hello, World!\"); // Debug error level\nLayrzLogging.info(\"Hello, World!\"); // Info error level\nLayrzLogging.warning(\"Hello, World!\"); // Warning error level\nLayrzLogging.error(\"Hello, World!\"); // Error error level\nLayrzLogging.fatal(\"Hello, World!\"); // Fatal error level\n```\n\n## FAQ\n\n### Why is this package called `layrz_logging`?\nAll packages developed by [Layrz](https://layrz.com) are prefixed with `layrz_`, check out our other packages on [pub.dev](https://pub.dev/publishers/goldenm.com/packages).\n\n### I need to pay to use this package?\n\u003cb\u003eNo!\u003c/b\u003e This library is free and open source, you can use it in your projects without any cost, but if you want to support us, give us a thumbs up here in [pub.dev](https://pub.dev/packages/layrz_logging) and star our [Repository](https://github.com/goldenm-software/layrz_logging)!\n\n### Can I contribute to this package?\n\u003cb\u003eYes!\u003c/b\u003e We are open to contributions, feel free to open a pull request or an issue on the [Repository](https://github.com/goldenm-software/layrz_logging)!\n\n### I have a question, how can I contact you?\nIf you need more assistance, you open an issue on the [Repository](https://github.com/goldenm-software/layrz_logging) and we're happy to help you :)\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\nThis project is maintained by [Golden M](https://goldenm.com) with authorization of [Layrz LTD](https://layrz.com).\n\n## Who are you? / Want to work with us?\n\u003cb\u003eGolden M\u003c/b\u003e is a software and hardware development company what is working on a new, innovative and disruptive technologies. For more information, contact us at [sales@goldenm.com](mailto:sales@goldenm.com) or via WhatsApp at [+(507)-6979-3073](https://wa.me/50769793073?text=\"From%20layrz_logging%20flutter%20library.%20Hello\").\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoldenm-software%2Flayrz_logging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoldenm-software%2Flayrz_logging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoldenm-software%2Flayrz_logging/lists"}