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:
-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 !!!!!!!!!!!!!!!!!!')
}
})