{"id":14982059,"url":"https://github.com/gulpjs/gulplog","last_synced_at":"2025-04-05T00:08:59.052Z","repository":{"id":36696674,"uuid":"41003186","full_name":"gulpjs/gulplog","owner":"gulpjs","description":"Logger for gulp and gulp plugins.","archived":false,"fork":false,"pushed_at":"2024-03-23T22:44:38.000Z","size":31,"stargazers_count":56,"open_issues_count":0,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-10-29T15:14:38.644Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/gulpjs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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},"funding":{"github":["gulpjs","phated","yocontra"],"tidelift":"npm/gulp","open_collective":"gulpjs"}},"created_at":"2015-08-18T23:49:32.000Z","updated_at":"2024-03-23T22:41:04.000Z","dependencies_parsed_at":"2022-09-14T02:31:23.025Z","dependency_job_id":"3968f869-56d5-4b8c-bf6f-a78ae680d1ff","html_url":"https://github.com/gulpjs/gulplog","commit_stats":{"total_commits":28,"total_committers":8,"mean_commits":3.5,"dds":0.5357142857142857,"last_synced_commit":"5891626a63374fe4077309139f5e721ecbbe28ad"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gulpjs%2Fgulplog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gulpjs%2Fgulplog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gulpjs%2Fgulplog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gulpjs%2Fgulplog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gulpjs","download_url":"https://codeload.github.com/gulpjs/gulplog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266564,"owners_count":20910836,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-09-24T14:04:43.086Z","updated_at":"2025-04-05T00:08:59.025Z","avatar_url":"https://github.com/gulpjs.png","language":"JavaScript","funding_links":["https://github.com/sponsors/gulpjs","https://github.com/sponsors/phated","https://github.com/sponsors/yocontra","https://tidelift.com/funding/github/npm/gulp","https://opencollective.com/gulpjs"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://gulpjs.com\"\u003e\n    \u003cimg height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# gulplog\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nLogger for gulp and gulp plugins\n\n## Usage\n\n```js\nvar logger = require('gulplog');\n\n// logs strings\nlogger.debug('The MOST verbose!');\nlogger.info('Some important info');\nlogger.warn('All the warnings to you');\nlogger.error('OH NO! SOMETHING HAPPENED!');\n\n// supports util.format!\nlogger.info('%s style!', 'printf');\n\n// log anything\nlogger.debug({ my: 'obj' });\nlogger.info([1, 2, 3]);\n```\n\n## API\n\nLogging (and level of logging) is controlled by [`gulp-cli`][gulp-cli-url]\n\n#### logger.debug(msg, ...args)\n\nHighest log level. Typically used for debugging purposes.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\nIf the first argument is not a string, all arguments will be emitted directly.\n\n#### logger.info(msg, ...args)\n\nStandard log level. Typically used for user information.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\nIf the first argument is not a string, all arguments will be emitted directly.\n\n#### logger.warn(msg, ...args)\n\nWarning log level. Typically used for warnings.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\nIf the first argument is not a string, all arguments will be emitted directly.\n\n#### logger.error(msg, ...args)\n\nError log level. Typically used when things went horribly wrong.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\nIf the first argument is not a string, all arguments will be emitted directly.\n\n## License\n\nMIT\n\n\u003c!-- prettier-ignore-start --\u003e\n[downloads-image]: https://img.shields.io/npm/dm/gulplog.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/gulplog\n[npm-image]: https://img.shields.io/npm/v/gulplog.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/gulplog/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/actions/workflow/status/gulpjs/gulplog/dev.yml?branch=master\u0026style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/gulplog\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/gulplog/master.svg?style=flat-square\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- prettier-ignore-start --\u003e\n[gulp-cli-url]: https://github.com/gulpjs/gulp-cli\n[util-format-url]: https://nodejs.org/docs/latest/api/util.html#util_util_format_format\n\u003c!-- prettier-ignore-end --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgulpjs%2Fgulplog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgulpjs%2Fgulplog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgulpjs%2Fgulplog/lists"}