mockaton 9.4.2 → 9.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/index.d.ts +1 -1
- package/lcov.info +367 -343
- package/package.json +1 -1
- package/src/Dashboard.css +16 -15
- package/src/Dashboard.js +2 -1
- package/src/MockDispatcher.js +2 -7
- package/src/Mockaton.js +4 -4
- package/src/StaticDispatcher.js +3 -3
- package/src/config.js +3 -3
- package/src/mockBrokersCollection.js +2 -2
- package/src/utils/fs.js +2 -2
- package/src/utils/http-response.js +16 -9
- package/src/utils/logger.js +42 -0
- package/src/utils/log.js +0 -34
package/README.md
CHANGED
|
@@ -485,11 +485,12 @@ At any rate, you can trigger any command besides opening a browser.
|
|
|
485
485
|
|
|
486
486
|
<br/>
|
|
487
487
|
|
|
488
|
-
### `logLevel?: 'quiet' | 'normal'`
|
|
488
|
+
### `logLevel?: 'quiet' | 'normal' | 'verbose'`
|
|
489
489
|
Defaults to `'normal'`.
|
|
490
490
|
|
|
491
491
|
- `quiet`: only errors (stderr)
|
|
492
|
-
- `normal`: info, access, warnings, and errors
|
|
492
|
+
- `normal`: info, mock access, warnings, and errors
|
|
493
|
+
- `verbose`: normal + API access
|
|
493
494
|
|
|
494
495
|
</details>
|
|
495
496
|
|