aboutsummaryrefslogtreecommitdiff
path: root/lib/logger.js
AgeCommit message (Collapse)AuthorFilesLines
2019-11-20Update logger.jsXhmikosR1-5/+1
Remove `hasDebugEnvVariable` function; it's just a `process.env` check
2019-11-18logger.js: use `Boolean` to make the intention clearer.XhmikosR1-1/+1
2019-11-18Use the arrow return syntaxXhmikosR1-3/+1
2019-11-18ES6-ify codebase.XhmikosR1-6/+10
Also: * remove unused variables * move `require`s at the top * check for prototype built-ins * run in strict mode * always check for error values in tests * make style consistent * mark Node.js 6 as the minimum supported version in package.json
2018-05-01Verbose use log level `debug`Matthew Kime1-1/+1
2015-12-10Use minimist to parse command line optionsAnna Henningsen1-6/+3
The command line options are made available as a object via `index.options`
2015-12-10Add command line option to write output to stdoutAnna Henningsen1-1/+2
Adds the command line option pair -w/--write. These options indicate that the output should be written to standard output, rather than being posted to coveralls.io, which may be useful for debugging, mixed-language codebases (e.g. node addons with C++ code) etc.
2014-07-03log at error level by default and only show others if --verbose switch is on.Gregg Caines1-2/+2
2013-12-05Added ability to turn on debug logging via environment variablemattjmorrison1-6/+16
For the grunt-karma-coveralls project, I need to be able to turn on debug level logging but without using `process.argv`. This will allow me to do so. This addresses this issue: https://github.com/mattjmorrison/grunt-karma-coveralls/issues/2 and can be fixed with this commit: https://github.com/mattjmorrison/grunt-karma-coveralls/commit/4bd6e2b58647dda4a6335fa6077334d8021e23c0
2013-06-22improved testing.cainus1-8/+7
2013-06-02fixed logger bug in the last published version preventing --verbose from ↵cainus1-0/+9
working. version bump to 2.0.11.