debug nodes - show length of strings, buffers or size of arrays

This commit is contained in:
Dave Conway-Jones 2015-08-11 19:39:37 +01:00
parent 5193d7bddb
commit 999b888c54
2 changed files with 7 additions and 7 deletions

View File

@ -201,7 +201,7 @@
msg.className = 'debug-message'+(o.level?(' debug-message-level-'+o.level):'');
msg.innerHTML = '<span class="debug-message-date">'+
getTimestamp()+'</span>'+
(name?'<span class="debug-message-name">['+name+']':'')+
(name?'<span class="debug-message-name">'+name:'')+
'</span>';
// NOTE: relying on function error to have a "type" that all other msgs don't
if (o.hasOwnProperty("type") && (o.type === "function")) {
@ -212,11 +212,11 @@
errorLvlType = 'warn';
}
msg.className = 'debug-message debug-message-level-' + errorLvl;
msg.innerHTML += '<span class="debug-message-topic">[function] : (' + errorLvlType + ')</span>';
msg.innerHTML += '<span class="debug-message-topic">function : (' + errorLvlType + ')</span>';
} else {
msg.innerHTML += '<span class="debug-message-topic">'+
(o.topic?topic+' : ':'')+
(o.property?'[msg.'+property+']':'[msg]')+" : "+format+
(o.property?'msg.'+property:'msg')+" : "+format+
'</span>';
}
@ -284,7 +284,7 @@
.debug-message-topic {
display: block;
background: #fff;
padding: 1px 5px;
padding: 1px;
font-size: 10px;
color: #a66;
}

View File

@ -82,13 +82,13 @@ module.exports = function(RED) {
msg.format = "error";
msg.msg = msg.msg.toString();
} else if (msg.msg instanceof Buffer) {
msg.format = "buffer";
msg.format = "buffer ["+msg.msg.length+"]";
msg.msg = msg.msg.toString('hex');
} else if (typeof msg.msg === 'object') {
var seen = [];
msg.format = "object";
if (util.isArray(msg.msg)) {
msg.format = "array";
msg.format = "array ["+msg.msg.length+"]";
}
msg.msg = JSON.stringify(msg.msg, function(key, value) {
if (typeof value === 'object' && value !== null) {
@ -111,7 +111,7 @@ module.exports = function(RED) {
msg.format = (msg.msg === null)?"null":"undefined";
msg.msg = "(undefined)";
} else {
msg.format = "string";
msg.format = "string ["+msg.msg.length+"]";
msg.msg = msg.msg;
}