{"id":19541899,"url":"https://github.com/imcf/jython-scijava-logging","last_synced_at":"2026-02-02T04:06:23.058Z","repository":{"id":150382475,"uuid":"154402009","full_name":"imcf/jython-scijava-logging","owner":"imcf","description":":snake::coffee::bookmark_tabs: Jython package for using SciJava's LogService for logging.","archived":false,"fork":false,"pushed_at":"2024-11-14T16:02:39.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-09-29T15:06:01.815Z","etag":null,"topics":["imagej2","jython","jython-library","logging","scijava"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imcf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","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}},"created_at":"2018-10-23T21:58:10.000Z","updated_at":"2024-11-14T16:00:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5bd64b6-d78b-432f-b2be-7179dbb5d6e8","html_url":"https://github.com/imcf/jython-scijava-logging","commit_stats":{"total_commits":23,"total_committers":2,"mean_commits":11.5,"dds":"0.13043478260869568","last_synced_commit":"ad27c84f46238994e5e0ce3ab71cbc417e3cdf4b"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/imcf/jython-scijava-logging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcf%2Fjython-scijava-logging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcf%2Fjython-scijava-logging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcf%2Fjython-scijava-logging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcf%2Fjython-scijava-logging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imcf","download_url":"https://codeload.github.com/imcf/jython-scijava-logging/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcf%2Fjython-scijava-logging/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29004695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T01:32:03.847Z","status":"online","status_checked_at":"2026-02-02T02:00:07.448Z","response_time":58,"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":["imagej2","jython","jython-library","logging","scijava"],"created_at":"2024-11-11T03:12:18.924Z","updated_at":"2026-02-02T04:06:23.038Z","avatar_url":"https://github.com/imcf.png","language":"Python","readme":"# SciJava log handler for Python 🐍☕📑\n\n[![DOI](https://zenodo.org/badge/154402009.svg)][doi]\n\nA very thin Python package (mavenized for [ImageJ2][imagej]) to use the\n[SciJava][gh_scijava] [LogService][gh_sj_logservice] as a handler for\n[Python's logging facility][py_logging]. See the wiki page about\n[Logging][ij_logging] for more details about ImageJ's logging framework.\n\nDeveloped and provided by the [Imaging Core Facility (IMCF)][imcf] of the\nBiozentrum, University of Basel, Switzerland.\n\n## 🚫 WARNING 🚫\n\nThe PyPI packages of this project are exclusively useful for automatic testing\nof e.g. the [`imcflibs`][imcflibs] package! They have no real use-case in the\nstandard CPython world 🐍🌍!\n\n## Example usage\n\nThe code in [extra/scripts/example.py](extra/scripts/example.py) demonstrates\nhow to use the handler in an ImageJ2 Python script utilizing the fabulous\n[Script Parameters][ij_script_params] for retrieving the LogService instance.\n\nRunning this code from ImageJ will result in the following messages being\nprinted to the console or the *Log* window, depending on how you launch ImageJ:\n\n```log\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] +++ new round of messages (level WARNING) +++\n[Fri Jan  5 12:25:15 CET 2018] [WARNING] warn log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] error log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] critical log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] --- finished round of messages (level WARNING) ---\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] +++ new round of messages (level INFO) +++\n[Fri Jan  5 12:25:15 CET 2018] [INFO] info log message\n[Fri Jan  5 12:25:15 CET 2018] [WARNING] warn log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] error log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] critical log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] --- finished round of messages (level INFO) ---\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] +++ new round of messages (level DEBUG) +++\n[Fri Jan  5 12:25:15 CET 2018] [DEBUG] debug log message\n[Fri Jan  5 12:25:15 CET 2018] [INFO] info log message\n[Fri Jan  5 12:25:15 CET 2018] [WARNING] warn log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] error log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] critical log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] --- finished round of messages (level DEBUG) ---\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] +++ new round of messages (level WARNING) +++\n[Fri Jan  5 12:25:15 CET 2018] [WARNING] warn log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] error log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] critical log message\n[Fri Jan  5 12:25:15 CET 2018] [ERROR] --- finished round of messages (level WARNING) ---\n```\n\n[imcf]: https://www.biozentrum.unibas.ch/imcf\n[imcflibs]: https://github.com/imcf/python-imcflibs/\n[imagej]: https://imagej.net\n[ij_logging]: https://imagej.net/Logging\n[ij_script_params]: http://imagej.net/Script_Parameters\n[py_logging]: https://docs.python.org/2/library/logging.html\n[gh_scijava]: https://github.com/scijava\n[gh_sj_logservice]: https://github.com/scijava/scijava-common/tree/master/src/main/java/org/scijava/log\n[doi]: https://zenodo.org/badge/latestdoi/154402009\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimcf%2Fjython-scijava-logging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimcf%2Fjython-scijava-logging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimcf%2Fjython-scijava-logging/lists"}