Commit 4125f22b authored by Leo Iannacone's avatar Leo Iannacone

sed debug level 4 for socket data received

parent 2dab017e
...@@ -8,7 +8,8 @@ var socket = io.connect('//' + config.hostname ); ...@@ -8,7 +8,8 @@ var socket = io.connect('//' + config.hostname );
level: 1 - user interaction level: 1 - user interaction
2 - automatic changes 2 - automatic changes
3 - socket interaction 3 - socket emit data
4 - socket received data
*/ */
var debug = function() { var debug = function() {
if (arguments.length == 0) { if (arguments.length == 0) {
......
...@@ -434,17 +434,17 @@ function Page_Distrubion(socket) ...@@ -434,17 +434,17 @@ function Page_Distrubion(socket)
this.start = function () { this.start = function () {
socket.on(config.events.error, function(socket_error) { socket.on(config.events.error, function(socket_error) {
debug(3, "socket > received event:",config.events.error, "data: ", socket_error) debug(4, "socket > received event:",config.events.error, "data: ", socket_error)
error.set(socket_error) error.set(socket_error)
}) })
socket.on(_e.distribution_packages.set, function (socket_data){ socket.on(_e.distribution_packages.set, function (socket_data){
debug(3, "socket > received event:",_e.distribution_packages.set, "data: ", socket_data) debug(4, "socket > received event:",_e.distribution_packages.set, "data: ", socket_data)
packages.set(socket_data) packages.set(socket_data)
}) })
socket.on(_e.distribution_packages.status, function (socket_data){ socket.on(_e.distribution_packages.status, function (socket_data){
debug(3, "socket > received event:",_e.distribution_packages.set, "data: ", socket_data) debug(4, "socket > received event:",_e.distribution_packages.set, "data: ", socket_data)
packages.set_status(socket_data) packages.set_status(socket_data)
sticky.set_status(socket_data) sticky.set_status(socket_data)
}) })
...@@ -455,17 +455,17 @@ function Page_Distrubion(socket) ...@@ -455,17 +455,17 @@ function Page_Distrubion(socket)
}) })
socket.on(_e.package_files_list.set, function (socket_data){ socket.on(_e.package_files_list.set, function (socket_data){
debug(3, "socket > received event:",_e.package_files_list.set, "data: ", socket_data) debug(4, "socket > received event:",_e.package_files_list.set, "data: ", socket_data)
files.set(socket_data) files.set(socket_data)
}) })
socket.on(_e.file.set, function (socket_data) { socket.on(_e.file.set, function (socket_data) {
debug(3, "socket > received event:",_e.file.set, "data: ", socket_data) debug(4, "socket > received event:",_e.file.set, "data: ", socket_data)
file.set(socket_data) file.set(socket_data)
}) })
socket.on(_e.file_newcontent, function (socket_data) { socket.on(_e.file_newcontent, function (socket_data) {
debug(3, "socket > received event:",_e.file_newcontent, "data: ", socket_data) debug(4, "socket > received event:",_e.file_newcontent, "data: ", socket_data)
new_lines.push(socket_data.file.new_content) new_lines.push(socket_data.file.new_content)
}) })
......
...@@ -95,17 +95,17 @@ function Page_Generic() ...@@ -95,17 +95,17 @@ function Page_Generic()
// update distributions // update distributions
socket.on(_e.broadcast.distributions, function(socket_distributions) { socket.on(_e.broadcast.distributions, function(socket_distributions) {
debug(3, "socket > received event:",_e.broadcast.distributions, "data: ", socket_distributions) debug(4, "socket > received event:",_e.broadcast.distributions, "data: ", socket_distributions)
distributions.set(socket_distributions) distributions.set(socket_distributions)
}); });
socket.on(_e.client.status, function(packages_status) { socket.on(_e.client.status, function(packages_status) {
debug(3, "socket > received event:",_e.client.status, "data: ", packages_status) debug(4, "socket > received event:",_e.client.status, "data: ", packages_status)
status.set(packages_status) status.set(packages_status)
}) })
socket.on(_e.broadcast.status_update, function(package_status) { socket.on(_e.broadcast.status_update, function(package_status) {
debug(3, "socket > received event:",_e.broadcast.status_update, "data: ", packages_status) debug(4, "socket > received event:",_e.broadcast.status_update, "data: ", packages_status)
status.update(package_status) status.update(package_status)
}) })
......
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