From f6d98f1472338a77b2f146087bcb8560f472e5d1 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Thu, 10 Nov 2011 13:31:36 -0800 Subject: fix(doc): make output less noisy --- docs/src/reader.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'docs/src/reader.js') diff --git a/docs/src/reader.js b/docs/src/reader.js index 576ae2e4..49a1e1b8 100644 --- a/docs/src/reader.js +++ b/docs/src/reader.js @@ -22,7 +22,6 @@ function collect() { files.forEach(function(file) { var work; if(/\.js$/.test(file)) { - console.log("reading " + file + "......."); work = Q.when(qfs.read(file, 'b'), function(content) { processJsFile(content, file).forEach (function(doc) { allDocs.push(doc); @@ -43,7 +42,6 @@ function collect() { files.forEach(function(file) { var work2; if (file.match(/\.ngdoc$/)) { - console.log("reading " + file + "......."); work2 = Q.when(qfs.read(file, 'b'), function(content){ var section = '@section ' + file.split('/')[2] + '\n'; allDocs.push(new ngdoc.Doc(section + content.toString(),file, 1).parse()); @@ -95,4 +93,4 @@ function processJsFile(content, file) { } }); return docs; -} \ No newline at end of file +} -- cgit v1.2.3