From 02022e5ea8ba994f29882a1670104a433dde737a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 14 Sep 2012 07:49:12 -0400 Subject: [PATCH] minor changes --- lib/server/appcache.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/server/appcache.js b/lib/server/appcache.js index b97c52e5..68a2c618 100644 --- a/lib/server/appcache.js +++ b/lib/server/appcache.js @@ -61,7 +61,9 @@ function setWatachFunctions(){ function onWatch (pFileName){ return function(pEvent, pFileName){ - console.log('file ' + pFileName + 'is changed'); + console.log(pEvent); + console.log('file ' + pFileName + ' is changed'); + }; } @@ -69,7 +71,7 @@ function onWatchFile(pFileName){ return function(pCurr, pPrev){ console.log(pCurr); if(pCurr.mtime !== pPrev.mtime) - console.log('file ' + pFileName + 'is changed'); + console.log('file ' + pFileName + ' is changed'); }; }