remove unused console.log

This commit is contained in:
Vladimir Polyakov 2015-04-11 10:22:46 +03:00
parent 9a499248df
commit 0294aa8a04

1
app.js
View File

@ -10,7 +10,6 @@ var app = http.createServer(function(req, res, next) {
if (req.url.indexOf('/data.io.js') === -1) {
if (req.url.indexOf('/js') === -1) {
// Compile a function
console.log(1234);
var index = jade.compileFile(__dirname + '/views/index.jade');
res.write(index());
res.end();