{"id":21822960,"url":"https://github.com/justcabbage/clog","last_synced_at":"2026-06-23T08:31:52.047Z","repository":{"id":265098506,"uuid":"785861958","full_name":"JustCabbage/CLOG","owner":"JustCabbage","description":"Logging System for C++20 Applications","archived":false,"fork":false,"pushed_at":"2024-04-12T19:33:49.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-21T11:30:56.573Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JustCabbage.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-04-12T19:33:32.000Z","updated_at":"2024-09-11T22:30:35.000Z","dependencies_parsed_at":"2024-11-27T17:18:47.966Z","dependency_job_id":"345a415d-367c-4366-9b6c-abf7f53ce281","html_url":"https://github.com/JustCabbage/CLOG","commit_stats":null,"previous_names":["justcabbage/clog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JustCabbage/CLOG","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCabbage%2FCLOG","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCabbage%2FCLOG/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCabbage%2FCLOG/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCabbage%2FCLOG/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JustCabbage","download_url":"https://codeload.github.com/JustCabbage/CLOG/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCabbage%2FCLOG/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34682622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"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":["cpp","logger","logging"],"created_at":"2024-11-27T17:18:45.751Z","updated_at":"2026-06-23T08:31:52.024Z","avatar_url":"https://github.com/JustCabbage.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CLOG [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/)\n\n# What is CLOG?\nCLOG is a relatively basic logging implementation for debugging in applications.\n\n# Features\n- RGB Based Theme\n- Customizable Logging options\n- Timestamp Logging\n- Date Logging\n- Thread Safe\n\n# Options\n- Default - Everything Enabled\n- NoTimestamps - Disable Timestamp Prefix\n- NoColor - No Displayed Color | Ignores any color provided\n- NoDate - Disable Date Prefix\n\n# Examples\n\n## Note\nInitialization of CLOG is Required. Without doing so, the library may not function as intended.\n\n## Standard Logging\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255));\nCLOG::Logger::Info(\"Information\");\n```\n\n## Warning\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255));\nCLOG::Logger::Info(\"Warning\");\n```\n\n## Error\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255));\nCLOG::Logger::Error(\"Error\");\n```\n\n## Single Option Initialization\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255), CLOG::Settings::LoggerOptions_NoDate);\n```\n\n## Multiple Options Initialization\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255), CLOG::Settings::LoggerOptions_NoDate | CLOG::Settings::LoggerOptions_NoTimestamps);\n```\n\n## Update Colors\n```c++\nCLOG::Logger::Initialize(CLOG::Colors::Color(255,255,255));\n\nCLOG::Logger::Info(\"Information\");\n\nCLOG::Logger::UpdateColor(CLOG::Logger::LogType_INFO,CLOG::Colors::Color(255,0,0));\n\nCLOG::Logger::Info(\"Red\");\n```\n\n# To Do\n\n- Add Log Levels\n- Add More Log Types\n- Add Ability To Update Logger Options\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcabbage%2Fclog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustcabbage%2Fclog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcabbage%2Fclog/lists"}