Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-12-10 10:27:19 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-12-10 10:27:19 +0400
commit5c463926056e3f2d3df8fb74e993e116c42c83a4 (patch)
tree2b089e951bfd720f227ee699b8ddc2c079fbd4c1
parente89098c540ee8849aadc527b3468ea357e6f161d (diff)
adding some logs
-rw-r--r--lib/css.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/css.js b/lib/css.js
index 12e9052..3791252 100644
--- a/lib/css.js
+++ b/lib/css.js
@@ -71,6 +71,8 @@ function cache(callback) {
var complete = 0
, _cache = {}
+ console.log('trying to cache files')
+
FILES.forEach(function (filename) {
var req
, res
@@ -97,6 +99,7 @@ function cache(callback) {
if (++complete == FILES.length) {
CACHE = _cache
callback && callback(null, CACHE)
+ console.log('cache complete !!!!!!!!!!!!!!!!!!')
}
})