We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bbc13 commit ad7b2b8Copy full SHA for ad7b2b8
packages/artillery/lib/console-capture.js
@@ -45,7 +45,7 @@ function setupConsoleCapture() {
45
orig.apply(console, args);
46
47
if (currentSize < MAX_RETAINED_LOG_SIZE) {
48
- outputLines = outputLines.concat(args);
+ outputLines = outputLines.concat([args]);
49
for (const x of args) {
50
currentSize += String(x).length;
51
}
@@ -70,7 +70,7 @@ function setupConsoleCapture() {
70
71
72
73
74
75
76
0 commit comments