Commit 379f1159 authored by Leo Iannacone's avatar Leo Iannacone

remove old log information

parent 70868954
......@@ -11,7 +11,9 @@ var express = require('express')
, Broadcaster = require('./lib/broadcaster.js')
var app = module.exports = express.createServer();
var io = require('socket.io').listen(app);
var io = require('socket.io').listen(app, { log: false });
// no log
// statuses
var status = {}
......
......@@ -62,7 +62,6 @@ function __send_package_status(socket, data, package_data) {
// + building: wc -l .datestamp == 1 (FIX_ME)
// + failed: else
var base_path = path.join(package_path, package_data.orig_name)
console.log(base_path)
fs.exists(base_path + '.dsc', function(changes_exists){
if (changes_exists) {
status_data.status = config.status.package.successed
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment