fixed missing space between log data elements

This commit is contained in:
Gareth Jones
2011-09-15 08:18:24 +10:00
parent 12e71bda4e
commit 9a34d9edfd
2 changed files with 7 additions and 4 deletions

View File

@@ -44,6 +44,9 @@ function formatLogData(logData) {
}
data.forEach(function (item) {
if (output) {
output += ' ';
}
if (item && item.stack) {
output += item.stack;
} else {