From 295e842392d0a34ac407ae0aa09522bfca31976e Mon Sep 17 00:00:00 2001 From: Hans-Christian Otto Date: Fri, 14 Jul 2023 13:56:02 +0200 Subject: [PATCH] bugfix: startTransaction should also give the transaction a name --- src/Profiler/Tideways.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Profiler/Tideways.php b/src/Profiler/Tideways.php index 7f6b388..743d7be 100644 --- a/src/Profiler/Tideways.php +++ b/src/Profiler/Tideways.php @@ -23,6 +23,7 @@ public function startTransaction(string $transactionName = null): void } \Tideways\Profiler::start($options); + $this->setTransactionName($transactionName); } public function setTransactionName(string $name): void