@jdeighan/coffee-utils 7.0.48 → 7.0.49
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/package.json +1 -1
- package/src/debug_utils.coffee +1 -0
- package/src/debug_utils.js +1 -0
package/package.json
CHANGED
package/src/debug_utils.coffee
CHANGED
@@ -161,6 +161,7 @@ export debug = (lArgs...) ->
|
|
161
161
|
LOG "debug('#{escapeStr(label)}') - 1 arg"
|
162
162
|
else
|
163
163
|
LOG "debug('#{escapeStr(label)}', #{typeof item}) - 2 args"
|
164
|
+
LOG "debugging flag = #{OL(debugging)}"
|
164
165
|
|
165
166
|
# --- We always need to manipulate the stack when we encounter
|
166
167
|
# either "enter X" or "return from X", so we can't short-circuit
|
package/src/debug_utils.js
CHANGED
@@ -174,6 +174,7 @@ export var debug = function(...lArgs) {
|
|
174
174
|
} else {
|
175
175
|
LOG(`debug('${escapeStr(label)}', ${typeof item}) - 2 args`);
|
176
176
|
}
|
177
|
+
LOG(`debugging flag = ${OL(debugging)}`);
|
177
178
|
}
|
178
179
|
// --- We always need to manipulate the stack when we encounter
|
179
180
|
// either "enter X" or "return from X", so we can't short-circuit
|