diff --git a/core/modules/utils/utils.js b/core/modules/utils/utils.js index a228f91d4..da12bba2d 100644 --- a/core/modules/utils/utils.js +++ b/core/modules/utils/utils.js @@ -51,14 +51,26 @@ exports.warning = function(text) { }; /* -Log a table of name: value pairs +Log a table of name: value or name: [values...] pairs */ exports.logTable = function(data) { - if(console.table) { + var hasArrays = false; + $tw.utils.each(data,function(value,name) { + if($tw.utils.isArray(value)) { + hasArrays = true; + } + }); + if(console.table && !hasArrays) { console.table(data); } else { $tw.utils.each(data,function(value,name) { - console.log(name + ": " + value); + if($tw.utils.isArray(value)) { + for(var t=0; t 1 ? variableInfo.resultList : variableInfo.text; } } if(this.filter) { diff --git a/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid b/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid index 2fa75cfad..1386c2e64 100644 --- a/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid +++ b/editions/tw5.com/tiddlers/widgets/ActionLogWidget.tid @@ -25,6 +25,7 @@ In addition there are optional attributes that can be used: |$$message |A message to display as the title of the information logged. Useful when several `action-log` widgets are used in sequence. | |$$all |Set to "yes" to log all variables in a collapsed table. Note that if there is nothing specified to log, all variables are always logged instead.| +<<.from-version "5.3.7">> Any [[multi-valued variables|Multi-Valued Variables]] or attributes are logged as a list of values. <<.tip """A handy tip if an action widget is not behaving as expected is to temporarily change it to an `<$action-log>` widget so that the attributes can be observed.""">>