mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-08 20:48:48 +00:00
Adding some logs to the server for debugging purposes
This commit is contained in:
@@ -148,7 +148,7 @@ io.on('connection', function(socket){
|
|||||||
//names.push(name);
|
//names.push(name);
|
||||||
unique_ids.push(short_id);
|
unique_ids.push(short_id);
|
||||||
var name;
|
var name;
|
||||||
|
var chromecast_object = false;
|
||||||
if(names[guid] === undefined){
|
if(names[guid] === undefined){
|
||||||
name = get_name(guid);
|
name = get_name(guid);
|
||||||
}
|
}
|
||||||
@@ -165,6 +165,7 @@ io.on('connection', function(socket){
|
|||||||
socketid = msg.socket_id;
|
socketid = msg.socket_id;
|
||||||
coll = msg.channel;
|
coll = msg.channel;
|
||||||
in_list = true;
|
in_list = true;
|
||||||
|
chromecast_object = true;
|
||||||
socket.join(coll);
|
socket.join(coll);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -456,8 +457,14 @@ io.on('connection', function(socket){
|
|||||||
|
|
||||||
socket.on('end', function(obj)
|
socket.on('end', function(obj)
|
||||||
{
|
{
|
||||||
|
if(chromecast_object) {
|
||||||
|
console.log("chromecast_object");
|
||||||
|
console.log(obj);
|
||||||
|
}
|
||||||
if(typeof(obj) !== 'object') {
|
if(typeof(obj) !== 'object') {
|
||||||
socket.emit('update_required');
|
socket.emit('update_required');
|
||||||
|
console.log("Error with end object");
|
||||||
|
console.log(obj);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
id = obj.id;
|
id = obj.id;
|
||||||
@@ -473,12 +480,16 @@ io.on('connection', function(socket){
|
|||||||
coll = encodeURIComponent(coll).replace(/\W/g, '');
|
coll = encodeURIComponent(coll).replace(/\W/g, '');
|
||||||
coll = filter.clean(coll);
|
coll = filter.clean(coll);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
|
console.log("Error with setting coll");
|
||||||
|
console.log(obj);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(coll == "" || coll == undefined || coll == null) {
|
if(coll == "" || coll == undefined || coll == null) {
|
||||||
socket.emit("update_required");
|
socket.emit("update_required");
|
||||||
|
console.log("Error with coll");
|
||||||
|
console.log(obj);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user