{ "_args": [ [ { "raw": "gulplog@^1.0.0", "scope": null, "escapedName": "gulplog", "name": "gulplog", "rawSpec": "^1.0.0", "spec": ">=1.0.0 <2.0.0", "type": "range" }, "/home/jdaugherty/work/GT2/GT2-Android/node_modules/gulp-util" ] ], "_from": "gulplog@>=1.0.0 <2.0.0", "_id": "gulplog@1.0.0", "_inCache": true, "_location": "/gulplog", "_nodeVersion": "0.10.36", "_npmUser": { "name": "phated", "email": "blaine@iceddev.com" }, "_npmVersion": "2.14.3", "_phantomChildren": {}, "_requested": { "raw": "gulplog@^1.0.0", "scope": null, "escapedName": "gulplog", "name": "gulplog", "rawSpec": "^1.0.0", "spec": ">=1.0.0 <2.0.0", "type": "range" }, "_requiredBy": [ "/gulp-util" ], "_resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "_shasum": "e28c4d45d05ecbbed818363ce8f9c5926229ffe5", "_shrinkwrap": null, "_spec": "gulplog@^1.0.0", "_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/gulp-util", "author": { "name": "Blaine Bublitz", "email": "blaine@iceddev.com", "url": "http://iceddev.com" }, "bugs": { "url": "https://github.com/gulpjs/gulplog/issues" }, "contributors": [], "dependencies": { "glogg": "^1.0.0" }, "description": "Logger for gulp and gulp plugins", "devDependencies": { "eslint": "^1.5.1", "eslint-config-node-style-guide": "^1.0.1", "jscs": "^2.1.1" }, "directories": {}, "dist": { "shasum": "e28c4d45d05ecbbed818363ce8f9c5926229ffe5", "tarball": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz" }, "engines": { "node": ">= 0.10" }, "files": [ "LICENSE", "index.js" ], "gitHead": "c920ad89da5a8f3724d35c83b6cbd8e132dada2b", "homepage": "https://github.com/gulpjs/gulplog#readme", "keywords": [ "gulp", "gulp-util", "log", "logging" ], "license": "MIT", "main": "index.js", "maintainers": [ { "name": "phated", "email": "blaine@iceddev.com" } ], "name": "gulplog", "optionalDependencies": {}, "readme": "

\n \n \n \n

\n\n# gulplog\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Gitter chat][gitter-image]][gitter-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)\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\n#### logger.info(msg)\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\n#### logger.warn(msg)\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\n#### logger.error(msg)\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\n## License\n\nMIT\n\n[downloads-image]: http://img.shields.io/npm/dm/gulplog.svg\n[npm-url]: https://npmjs.org/package/gulplog\n[npm-image]: http://img.shields.io/npm/v/gulplog.svg\n\n[travis-url]: https://travis-ci.org/gulpjs/gulplog\n[travis-image]: http://img.shields.io/travis/gulpjs/gulplog.svg\n\n[gitter-url]: https://gitter.im/gulpjs/gulp\n[gitter-image]: https://badges.gitter.im/gulpjs/gulp.png\n\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", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git+https://github.com/gulpjs/gulplog.git" }, "scripts": { "test": "eslint index.js && jscs index.js" }, "version": "1.0.0" }