caterpillar
caterpillar copied to clipboard
Caterpillar is the ultimate logging system for Deno, Node.js, and Web Browsers. Log levels are implemented to the RFC standard. Log entries can be filtered and piped to various streams, including colo...
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.21.4 to 0.23.10. Release notes Sourced from typedoc's releases. v0.23.10 Features Added support for detecting comments directly before parameters as the parameter comment, #2019. Added support for...
Bumps [cross-fetch](https://github.com/lquixada/cross-fetch) from 3.1.4 to 3.1.5. Release notes Sourced from cross-fetch's releases. v3.1.5 What's Changed chore: updated node-fetch version to 2.6.7 by @dlafreniere in lquixada/cross-fetch#124 New Contributors @dlafreniere made their...
Bumps [eslint-config-bevry](https://github.com/bevry/eslint-config-bevry) from 3.26.0 to 3.27.0. Changelog Sourced from eslint-config-bevry's changelog. v3.27.0 2021 July 30 Updated dependencies, base files, and editions using boundation Commits c7a7577 v3.27.0 - boundation, changelog, version...
Bumps [valid-directory](https://github.com/bevry/valid-directory) from 3.7.0 to 3.9.0. Changelog Sourced from valid-directory's changelog. v3.9.0 2021 July 31 Updated dependencies, base files, and editions using boundation v3.8.0 2021 July 28 Updated dependencies, base...
Bumps [projectz](https://github.com/bevry/projectz) from 2.21.0 to 2.22.0. Changelog Sourced from projectz's changelog. v2.22.0 2021 July 30 Updated dependencies, base files, and editions using boundation Commits 0fe1176 v2.22.0 - boundation, changelog, version...
Bumps [kava](https://github.com/bevry/kava) from 5.14.0 to 5.15.0. Changelog Sourced from kava's changelog. v5.15.0 2021 July 29 Updated dependencies, base files, and editions using boundation Commits 1d4a894 v5.15.0 - boundation, changelog, version...
running the sample from https://repl.it/@balupton/caterpillar-deno#index.ts with deno (version 1.4.2) I receive the error ``` error: Import 'https://unpkg.com/[email protected]/edition-deno/index.ts' failed: 404 Not Found Imported from "https://unpkg.com/[email protected]/edition-deno/logger.ts:1" ``` a solution was to import...
It would be useful to be able to pass options along the pipe. For example ``Human`` has an option ``color`` as does ``Browser``, which would typically be set the same....
The conditional https://github.com/bevry/caterpillar/blob/a5c8eb2b57eb7a449f3684b14be07ad58f1b06e8/source/transforms/human.ts#L141 does: ```` } else { result = format.text } ```` Which doesn't make sense to me. ie. ``format.text`` is ``undefined`` in the else case.
Various loggers enable metadata to be included in logger output. In Pino etc. this is handled by _child_ loggers. In Consola you can use ```log.wthTag( name )``` to create a...