(logStream, version)
| 122 | } |
| 123 | |
| 124 | enableVerboseMode(logStream, version) { |
| 125 | if (this.verboseEnabled) { |
| 126 | return; |
| 127 | } |
| 128 | |
| 129 | logStream.makeVerbose(); |
| 130 | log.info('Version:', version); |
| 131 | this.verboseEnabled = true; |
| 132 | } |
| 133 | |
| 134 | // Retrieve the yargs argv object and apply any further fix needed |
| 135 | // on the output of the yargs options parsing. |