{"id":37029418,"url":"https://github.com/elf4j/elf4j-logback","last_synced_at":"2026-01-14T03:31:44.657Z","repository":{"id":62623886,"uuid":"555130421","full_name":"elf4j/elf4j-logback","owner":"elf4j","description":"An adapter to use LOGBACK as service provider and runtime log engine for the ELF4J (Easy Logging Facade for Java) API","archived":false,"fork":false,"pushed_at":"2024-09-09T07:03:27.000Z","size":121,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-05T06:53:56.069Z","etag":null,"topics":["api","elf4j","java","java-logger","java-logging","java-logging-facade","logback","logging","logging-facade","logging-framework","logging-library","logging-service","logging-service-provider","spi"],"latest_commit_sha":null,"homepage":"https://elf4j.github.io/elf4j-logback/","language":"Java","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/elf4j.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2022-10-21T02:07:03.000Z","updated_at":"2024-06-09T22:54:07.000Z","dependencies_parsed_at":"2024-04-22T07:57:06.695Z","dependency_job_id":null,"html_url":"https://github.com/elf4j/elf4j-logback","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/elf4j/elf4j-logback","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elf4j%2Felf4j-logback","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elf4j%2Felf4j-logback/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elf4j%2Felf4j-logback/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elf4j%2Felf4j-logback/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elf4j","download_url":"https://codeload.github.com/elf4j/elf4j-logback/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elf4j%2Felf4j-logback/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408843,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api","elf4j","java","java-logger","java-logging","java-logging-facade","logback","logging","logging-facade","logging-framework","logging-library","logging-service","logging-service-provider","spi"],"created_at":"2026-01-14T03:31:44.134Z","updated_at":"2026-01-14T03:31:44.642Z","avatar_url":"https://github.com/elf4j.png","language":"Java","readme":"# elf4j-logback\n\nAn adapter to use [LOGBACK](https://logback.qos.ch/) as service provider and runtime log engine\nfor the [ELF4J](https://github.com/elf4j/elf4j) (Easy Logging Facade for Java) API\n\n## User Story\n\nAs an application developer using the [ELF4J](https://github.com/elf4j/elf4j) API, I want to have the option of\nselecting [LOGBACK](https://logback.qos.ch/) as my log engine, at application deploy time without code change or\nre-compile.\n\n## Prerequisite\n\nJava 8+\n\n## Get It...\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.github.elf4j/elf4j-logback.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.github.elf4j%22%20AND%20a:%22elf4j-logback%22)\n\n## Use It...\n\nIf you are using the [ELF4J API](https://github.com/elf4j/elf4j) for logging, and wish to select or change to use\nLOGBACK as the run-time log engine, then simply pack this service provider in the classpath when the application\ndeploys. No code change needed. At compile time, the client code is unaware of this run-time logging service provider.\nWith the ELF4J facade, opting for LOGBACK as the logging implementation is a deployment-time decision.\n\nThe usual [LOGBACK configuration](https://logback.qos.ch/manual/configuration.html) applies.\n\nWith Maven, in addition to use compile-scope on the [ELF4J API](https://github.com/elf4j/elf4j) dependency, an end-user\napplication would use runtime-scope for this provider as a dependency:\n\n```html\n\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.elf4j\u003c/groupId\u003e\n    \u003cartifactId\u003eelf4j\u003c/artifactId\u003e\n    \u003cscope\u003ecompile\u003c/scope\u003e\n\u003c/dependency\u003e\n\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.elf4j\u003c/groupId\u003e\n    \u003cartifactId\u003eelf4j-logback\u003c/artifactId\u003e\n    \u003cscope\u003eruntime\u003c/scope\u003e\n\u003c/dependency\u003e\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felf4j%2Felf4j-logback","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felf4j%2Felf4j-logback","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felf4j%2Felf4j-logback/lists"}