debugger_js
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "debugger_js", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "A library for debug logging in javascript", | ||
@@ -5,0 +5,0 @@ "main": "debugger.js", |
@@ -47,5 +47,4 @@ # debugger_js | ||
| opts.logTypes | <code>object</code> | A collection of logTypes created by the logType function | | ||
| opts.debugModes | <code>string</code> | A collection of key value pairs where every key is a logType, and every value is a boolean whether or not that logType is being displayed. If no d | ||
ebugModes are provided, opts.logging will automatically be set to 'logNone'. | | ||
| opts.debugModes | <code>string</code> | A collection of key value pairs where every key is a logType, and every value is a boolean whether or not that logType is being displayed. If no debugModes are provided, opts.logging will automatically be set to 'logNone'. | | ||
| opts.logging | <code>string</code> | An optional parameter to set what will be logged. Possible values include 'logAll', 'logNone'. All other values will default to using the debugModes. | ||
logAll will log all debug messages, regardless of debugMode. logNone will log no debug messages, regardless of debugMode. | |
7846
49