Skip to content

Commit d1b589d

Browse files
committed
hotfix
1 parent f153881 commit d1b589d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

handlers/ConsoleHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function bootstrap($app)
1515
function () use ($app) {
1616
foreach ($app->requestedParams as $key => $value) {
1717
$this->getAgent()->backgroundJob();
18-
$this->getAgent()->addCustomParameter($key, var_export($value));
18+
$this->getAgent()->addCustomParameter($key, var_export($value, true));
1919
}
2020
}
2121
);

handlers/WebHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function () use ($app, &$agent) {
4242
Application::EVENT_AFTER_ACTION,
4343
function () use ($app) {
4444
foreach ($app->controller->actionParams as $key => $value) {
45-
$this->getAgent()->addCustomParameter($key, var_export($value));
45+
$this->getAgent()->addCustomParameter($key, var_export($value, true));
4646
}
4747
}
4848
);

0 commit comments

Comments
 (0)