minor changes

This commit is contained in:
coderaiser 2012-09-14 07:49:12 -04:00
parent 18d71f579a
commit 54c4625bf5

View file

@ -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');
};
}