{"id":16599652,"url":"https://github.com/eafy/zjlog","last_synced_at":"2026-02-14T21:03:01.445Z","repository":{"id":56930669,"uuid":"139699015","full_name":"Eafy/ZJLog","owner":"Eafy","description":"Log redirection output tool for iOS, you can set the Log level, redirect output to the proxy interface, save logs to the sandbox, support for c、c++、m、mm code files, and more.","archived":false,"fork":false,"pushed_at":"2025-02-12T09:41:50.000Z","size":700,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T04:02:27.622Z","etag":null,"topics":["c","cplusplus","log","nslog","oc","printf"],"latest_commit_sha":null,"homepage":"","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/Eafy.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,"zenodo":null}},"created_at":"2018-07-04T09:20:04.000Z","updated_at":"2025-02-12T09:41:44.000Z","dependencies_parsed_at":"2025-04-11T12:51:38.470Z","dependency_job_id":"debd8a33-7810-446a-b918-c4fd488d2fba","html_url":"https://github.com/Eafy/ZJLog","commit_stats":{"total_commits":75,"total_committers":4,"mean_commits":18.75,"dds":0.4,"last_synced_commit":"2020845e0a738ff488669c00f62bcd7ece0529f8"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/Eafy/ZJLog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eafy%2FZJLog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eafy%2FZJLog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eafy%2FZJLog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eafy%2FZJLog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Eafy","download_url":"https://codeload.github.com/Eafy/ZJLog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eafy%2FZJLog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29455601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"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":["c","cplusplus","log","nslog","oc","printf"],"created_at":"2024-10-12T00:12:10.876Z","updated_at":"2026-02-14T21:03:01.412Z","avatar_url":"https://github.com/Eafy.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZJLogSDK\nLog redirection output tool for iOS, support for c、c++、m、mm code files.\u003c/br\u003e\n[![CI Status](https://img.shields.io/travis/Eafy/ZJLog.svg?style=flat)](https://travis-ci.org/Eafy/ZJLog)\n[![Version](https://img.shields.io/cocoapods/v/ZJLog.svg?style=flat)](https://cocoapods.org/pods/ZJLog)\n[![License](https://img.shields.io/cocoapods/l/ZJLog.svg?style=flat)](https://cocoapods.org/pods/ZJLog)\n[![Platform](https://img.shields.io/cocoapods/p/ZJLog.svg?style=flat)](https://cocoapods.org/pods/ZJLog)\n\n# Use Description\n## Log Level\n  verbose \u003e debug \u003e info \u003e warn \u003e error\n  |     parameter     |  level  |  description      |\n  | :----------: | :------: | :---: |\n  |  `ZJLOG_LEVEL_VERBOSE`  | 0 |  verbose  |\n  | `ZJLOG_LEVEL_DEBUG`  | 1 |  debug   |   \n  |   `ZJLOG_LEVEL_INFO`   | 2 |  info   |  \n  | `ZJLOG_LEVEL_WARN` | 3 |  warn   |   \n  | `ZJLOG_LEVEL_ERROR` | 4 |  error   |  \n  \n## ZJLog Setting API\n- `+setLogOFF`  \n  Turn off log output, default on.\n  \n- `+setLevel:`  \n  Setting the log level, default verbose.\n\n- `+setDelegate:`  \n  Setting delegate: ZJLogDelegate for didReceiveLogString.\n  \n- `+saveLog:`  \n  Switch for save log to sandbox.\n  \n## Use Print API\n### For OC\n`#import \u003cZJLog/ZJLog.h\u003e`\u003c/br\u003e\n`CLog(@\"This is a log1\");`\u003c/br\u003e\n`CLog(@\"This is a log2:%@\", @\"Hello World!\");`\n### For C、C++\n`#include \u003cZJLog/ZJPrintfLog.h\u003e`\u003c/br\u003e\n`CPrintf(\"This is a log for debug\")`\u003c/br\u003e\n`CPrintfV(\"This is a log for verbose\")`\u003c/br\u003e\n`CPrintfD(\"This is a log for debug\")`\u003c/br\u003e\n`CPrintfI(\"This is a log for info\")`\u003c/br\u003e\n`CPrintfW(\"This is a log for warn\")`\u003c/br\u003e\n`CPrintfE(\"This is a log for error\")`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feafy%2Fzjlog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feafy%2Fzjlog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feafy%2Fzjlog/lists"}