(env)
| 38 | } |
| 39 | |
| 40 | function configureLogger(env) { |
| 41 | let depth = Number(env['DEBUG_DEPTH']); |
| 42 | if (depth) { |
| 43 | let logConfig = require('heimdalljs').configFor('logging'); |
| 44 | logConfig.depth = depth; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | // Options: Array cliArgs, Stream inputStream, Stream outputStream, EventEmitter process |
| 49 | module.exports = async function (options) { |
no outgoing calls
no test coverage detected
searching dependent graphs…