{"id":19290037,"url":"https://github.com/gleich/logoru","last_synced_at":"2025-12-15T00:42:23.509Z","repository":{"id":55015115,"uuid":"285962330","full_name":"gleich/logoru","owner":"gleich","description":"🌲 golang port of Delgan's python loguru (just logging)","archived":false,"fork":false,"pushed_at":"2023-01-01T03:37:58.000Z","size":653,"stargazers_count":10,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-06-21T03:22:04.990Z","etag":null,"topics":["golang","logging","module","package"],"latest_commit_sha":null,"homepage":"","language":"Go","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/gleich.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-08T03:01:39.000Z","updated_at":"2023-10-11T10:49:57.000Z","dependencies_parsed_at":"2023-01-31T20:45:32.223Z","dependency_job_id":null,"html_url":"https://github.com/gleich/logoru","commit_stats":null,"previous_names":["matt-gleich/logoru","matt-gleich/go_loguru"],"tags_count":0,"template":false,"template_full_name":"gleich/go_template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gleich%2Flogoru","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gleich%2Flogoru/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gleich%2Flogoru/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gleich%2Flogoru/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gleich","download_url":"https://codeload.github.com/gleich/logoru/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223888725,"owners_count":17220150,"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":["golang","logging","module","package"],"created_at":"2024-11-09T22:17:52.223Z","updated_at":"2025-12-15T00:42:23.461Z","avatar_url":"https://github.com/gleich.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- DO NOT REMOVE - contributor_list:data:start:[\"gleich\", \"ImgBotApp\", \"dependabot-preview[bot]\"]:end --\u003e\n\n# logoru\n\n🌲 golang port of [Delgan's python loguru](https://github.com/Delgan/loguru)\n\n![build](https://github.com/gleich/logoru/workflows/build/badge.svg)\n![test](https://github.com/gleich/logoru/workflows/test/badge.svg)\n![lint](https://github.com/gleich/logoru/workflows/lint/badge.svg)\n\n## 🚀 Install\n\nRun the following command in your terminal:\n\n```txt\ngo get -u github.com/gleich/logoru\n```\n\n## 📝 Documentation [![GoDoc](https://godoc.org/github.com/gleich/logoru?status.svg)](https://godoc.org/github.com/gleich/logoru)\n\n### `func Debug`\n\n```go\nfunc Debug(msg interface{})\n```\n\nOutput a debugging message\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Debug(\"Here is a debug message\")\n    logoru.Debug(\"Hello\", \"World\")\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/debug_example.png\" width=\"500\"\u003e\n\n### `func Info`\n\n```go\nfunc Info(msg interface{})\n```\n\nOutput an info message\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Info(\"Here is an info message\")\n    logoru.Info(\"Hello\", \"World\")\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/info_example.png\" width=\"500\"\u003e\n\n### `func Success`\n\n```go\nfunc Success(msg interface{})\n```\n\nOutput a success message\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Success(\"Here is a success message\")\n    logoru.Success(\"Hello\", \"World\")\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/success_example.png\" width=\"500\"\u003e\n\n### `func Warning`\n\n```go\nfunc Warning(msg interface{})\n```\n\nOutput a warning message\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Warning(\"Here is a warning message\")\n    logoru.Warning(\"Hello\", \"World\")\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/warning_example.png\" width=\"500\"\u003e\n\n### `func Error`\n\n```go\nfunc Error(msg interface{})\n```\n\nOutput a error message\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Error(\"Here is an error message\")\n    logoru.Error(\"Hello\", \"World\")\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/error_example.png\" width=\"500\"\u003e\n\n### `func Critical`\n\n```go\nfunc Critical(msg interface{})\n```\n\nOutput a critical message which will panic at the end.\n\n#### Example\n\n```go\npackage main\n\n\nimport \"github.com/gleich/logoru\"\n\nfunc main() {\n    logoru.Critical(\"Here is a critical message\") // Panic occurs\n}\n```\n\nOutput:\n\n\u003cimg src=\"./docs/images/critical_example.png\" width=\"500\"\u003e\n\n## 🙌 Contributing\n\nBefore contributing please read the [CONTRIBUTING.md file](https://github.com/gleich/logoru/blob/master/CONTRIBUTING.md)\n\n\u003c!-- DO NOT REMOVE - contributor_list:start --\u003e\n\n## 👥 Contributors\n\n- **[@gleich](https://github.com/gleich)**\n\n- **[@ImgBotApp](https://github.com/ImgBotApp)**\n\n- **[@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)**\n\n\u003c!-- DO NOT REMOVE - contributor_list:end --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgleich%2Flogoru","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgleich%2Flogoru","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgleich%2Flogoru/lists"}