{"id":48238147,"url":"https://github.com/un-rust/urlogger","last_synced_at":"2026-04-04T20:10:23.268Z","repository":{"id":339880688,"uuid":"1163696691","full_name":"un-rust/urlogger","owner":"un-rust","description":"🖍️ Lightweight colored logger: `log(level, message)` with `RUST_LOG` filtering.","archived":false,"fork":false,"pushed_at":"2026-02-22T04:54:13.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-22T10:11:30.619Z","etag":null,"topics":["console","log","logger","logging"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/un-rust.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","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},"funding":{"github":"betterhyq"}},"created_at":"2026-02-22T02:07:00.000Z","updated_at":"2026-02-22T04:54:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/un-rust/urlogger","commit_stats":null,"previous_names":["un-rust/urlogger"],"tags_count":3,"template":false,"template_full_name":"un-rust/template","purl":"pkg:github/un-rust/urlogger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un-rust%2Furlogger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un-rust%2Furlogger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un-rust%2Furlogger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un-rust%2Furlogger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/un-rust","download_url":"https://codeload.github.com/un-rust/urlogger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un-rust%2Furlogger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31412057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":["console","log","logger","logging"],"created_at":"2026-04-04T20:10:22.761Z","updated_at":"2026-04-04T20:10:23.263Z","avatar_url":"https://github.com/un-rust.png","language":"Rust","funding_links":["https://github.com/sponsors/betterhyq"],"categories":[],"sub_categories":[],"readme":"# 🖍️ urlogger\n\n\u003c!-- automdrs:badges showCrateVersion=\"true\" showCrateDownloads=\"true\" showCrateDocs=\"true\" showCommitActivity=\"true\" showRepoStars=\"true\" --\u003e\n![Crates.io Version](https://img.shields.io/crates/v/urlogger)\n![Crates.io Total Downloads](https://img.shields.io/crates/d/urlogger)\n![docs.rs](https://img.shields.io/docsrs/urlogger)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/un-rust/urlogger)\n![GitHub Repo stars](https://img.shields.io/github/stars/un-rust/urlogger)\n\u003c!-- /automdrs --\u003e\n\n\u003c!-- automdrs:description --\u003e\n\nLightweight colored logger: `log(level, message)` with `RUST_LOG` filtering.\n\n\u003c!-- /automdrs --\u003e\n\n**[Full documentation →](https://docs.rs/urlogger/)**\n\n## Quick start\n\n\u003c!-- automdrs:cargo-add --\u003e\n\n```sh\ncargo add urlogger\n```\n\n\u003c!-- /automdrs --\u003e\n\n## Usage\n\n\u003c!-- automdrs:file src=\"./src/main.rs\" --\u003e\n```rust\n//! Demo: logs at all levels. Use `RUST_LOG=info` to filter.\n\nuse urlogger::{LogLevel, log};\n\nfn main() {\n    log(LogLevel::Trace, \"Hello, world!\");\n    log(LogLevel::Debug, \"Hello, world!\");\n    log(LogLevel::Info, \"Hello, world!\");\n    log(LogLevel::Warn, \"Hello, world!\");\n    log(LogLevel::Error, \"Hello, world!\");\n}\n```\n\u003c!-- /automdrs --\u003e\n\n## License\n\n\u003c!-- automdrs:contributors author=\"UnRUST\" license=\"Apache-2.0\" --\u003e\nPublished under the [Apache-2.0](./LICENSE) license.\nMade by [@UnRUST](https://github.com/un-rust) 💛\n\u003cbr\u003e\u003cbr\u003e\n\u003ca href=\"https://github.com/un-rust/urlogger/graphs/contributors\"\u003e\n\u003cimg src=\"https://contrib.rocks/image?repo=un-rust/urlogger\" /\u003e\n\u003c/a\u003e\n\u003c!-- /automdrs --\u003e\n\n\u003c!-- automdrs:with-automdrs --\u003e\n\n---\n\n_🛠️ auto updated with [automd-rs](https://github.com/betterhyq/automd-rs)_\n\n\u003c!-- /automdrs --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fun-rust%2Furlogger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fun-rust%2Furlogger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fun-rust%2Furlogger/lists"}