Add comment to _intercepted() function of logging package.

This commit is contained in:
Slava Kim
2013-06-17 11:48:28 -07:00
parent 4c88ed45f7
commit fefd11493f

View File

@@ -13,6 +13,8 @@ var interceptedLines = [];
Log._intercept = function (count) {
intercept += count;
};
// Returns intercepted lines and resets the intercept counter.
Log._intercepted = function () {
var lines = interceptedLines;
interceptedLines = [];