8582ba38 by brandonocasey

log cleanup warnings

1 parent aed1155d
...@@ -64,12 +64,12 @@ var clean = function() { ...@@ -64,12 +64,12 @@ var clean = function() {
64 try { 64 try {
65 fs.unlinkSync(manifestFilepath); 65 fs.unlinkSync(manifestFilepath);
66 } catch(e) { 66 } catch(e) {
67 // ignore error, must not exist 67 console.log(e);
68 } 68 }
69 try { 69 try {
70 fs.unlinkSync(expectedFilepath); 70 fs.unlinkSync(expectedFilepath);
71 } catch(e) { 71 } catch(e) {
72 // ignore error, must not exist 72 console.log(e);
73 } 73 }
74 } 74 }
75 75
......