{"id":18043261,"url":"https://github.com/gamunetwork/logger","last_synced_at":"2026-02-25T20:06:01.893Z","repository":{"id":239034973,"uuid":"797858177","full_name":"GamuNetwork/logger","owner":"GamuNetwork","description":"Simple and easy-to-use logging module for python and javascript","archived":false,"fork":false,"pushed_at":"2025-05-05T11:23:41.000Z","size":166,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-17T05:45:10.209Z","etag":null,"topics":["logger","logger-js","logger-nodejs","logger-python","logging-library","nodejs-logger","npm-module","npm-package","npmjs"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@gamunetwork/logger","language":"Python","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/GamuNetwork.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,"publiccode":null,"codemeta":null}},"created_at":"2024-05-08T16:23:56.000Z","updated_at":"2025-05-21T09:02:28.000Z","dependencies_parsed_at":"2024-05-09T16:26:02.379Z","dependency_job_id":"d5a5306f-4b83-4e78-9edf-92c866d090ba","html_url":"https://github.com/GamuNetwork/logger","commit_stats":null,"previous_names":["gamunetwork/logger"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/GamuNetwork/logger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamuNetwork%2Flogger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamuNetwork%2Flogger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamuNetwork%2Flogger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamuNetwork%2Flogger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GamuNetwork","download_url":"https://codeload.github.com/GamuNetwork/logger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GamuNetwork%2Flogger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29837565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T19:08:47.527Z","status":"ssl_error","status_checked_at":"2026-02-25T18:59:04.705Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["logger","logger-js","logger-nodejs","logger-python","logging-library","nodejs-logger","npm-module","npm-package","npmjs"],"created_at":"2024-10-30T17:07:46.054Z","updated_at":"2026-02-25T20:06:01.889Z","avatar_url":"https://github.com/GamuNetwork.png","language":"Python","readme":"# \u003cdiv align=\"center\"\u003eGamu Logger - Main Page\u003c/div\u003e\n\n## \u003cdiv align=\"center\"\u003eNO LONGER MAINTAINED. THE LOGGER WAS MOVED TO \u003ca href=\"https://github.com/T0ine34/gamuLogger\"\u003ehttps://github.com/T0ine34/gamuLogger\u003c/a\u003e\u003c/div\u003e\n\n### \u003cdiv align=\"center\"\u003e🏠 Main page | \u003ca href=\"./python/readme.md\"\u003e🐍 Python\u003c/a\u003e | \u003ca href=\"./javascript/readme.md\"\u003e🌐 Javascript\u003c/a\u003e\u003c/div\u003e\n\n## \u003cdiv align=\"center\"\u003e📚 Table of Contents\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003ch3\u003e\u003ca href=\"#-features\"\u003e✨ Features\u003c/a\u003e\u003c/h3\u003e\n    \u003ch3\u003e\u003ca href=\"#-installation\"\u003e🔨 Installation\u003c/a\u003e\u003c/h3\u003e\n    \u003ch3\u003e\u003ca href=\"#-examples\"\u003e💡 Examples\u003c/a\u003e\u003c/h3\u003e\n    \u003ch3\u003e\u003ca href=\"#-issue\"\u003e🚨 Issue\u003c/a\u003e\u003c/h3\u003e\n\u003c/div\u003e\n\nThe goal of this module is to provide a simple, easy to use but powerful logging module for both python and javascript.\n\n## ✨ Features\n- Simple and easy to use (see examples below)\n- Supports multiple log levels (DEEP_DEBUG, DEBUG, INFO, WARNING, ERROR, CRITICAL)\n- Supports multiple log outputs (console, file) with separated level configuration\n- Supports colors in console output\n- Contain project modules features based on the current file (see examples below)\n- Add decorators to log function calls (see examples below) (python only for now)\n\n\n## 💡 Examples\n### Python\n```python\nfrom gamuLogger import error, info, critical\n\nerror(\"This is an error message\")\ninfo(\"This is an info message\")\ncritical(\"This is a critical message\")\n```\nwill output:\n```log\n[ current datetime ] [  ERROR   ] This is an error message\n[ current datetime ] [   INFO   ] This is an info message\n[ current datetime ] [ CRITICAL ] This is a critical message\n```\n\n### Javascript\n```javascript\nimport { Logger, error, info, critical } from '@gamunetwork/logger';\n\ninfo(\"This is an info message before setting the module name\");\n\nLogger.setModule('module_name'); // set the module name, for this file only\n\nerror(\"This is an error message\");\ninfo(\"This is an info message\");\ncritical(\"This is a critical message\");\n```\nwill output:\n```log\n[ current datetime ] [   INFO   ] This is an info message before setting the module name\n[ current datetime ] [  ERROR   ] [ module_name ] This is an error message\n[ current datetime ] [   INFO   ] [ module_name ] This is an info message\n[ current datetime ] [ CRITICAL ] [ module_name ] This is a critical message\n```\n\n\u003e a variant of this decorator named `@deep_debug_func` is also available. It will do the same thing, but will set it output to DEEP_DEBUG instead of DEBUG.\n\n## 🚨 Issue\nIf you encounter any problem, please let us know by creating an issue here, on github !\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgamunetwork%2Flogger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgamunetwork%2Flogger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgamunetwork%2Flogger/lists"}