Skip to content

Commit ce0a795

Browse files
committed
revert debug to false in tracing test
1 parent 5b85f91 commit ce0a795

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/EventListener/BufferFlusher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static function getSubscribedEvents(): array
4646
return [
4747
KernelEvents::TERMINATE => ['handleKernelTerminateEvent', 10],
4848
ConsoleEvents::COMMAND => ['handleConsoleCommandEvent', 150],
49-
ConsoleEvents::TERMINATE => ['handleConsoleTerminateEvent', 0],
49+
ConsoleEvents::TERMINATE => ['handleConsoleTerminateEvent', 10],
5050
ConsoleEvents::ERROR => ['handleConsoleErrorEvent', 10],
5151
];
5252
}

tests/End2End/TracingEnd2EndTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function setUp(): void
3636

3737
public function testTracingWithDoctrineConnectionPing(): void
3838
{
39-
$client = static::createClient(['debug' => true]);
39+
$client = static::createClient(['debug' => false]);
4040

4141
$client->request('GET', '/tracing/ping-database');
4242

@@ -52,7 +52,7 @@ public function testTracingWithDoctrineConnectionPing(): void
5252

5353
public function testTracingWithIgnoredTransaction(): void
5454
{
55-
$client = static::createClient(['debug' => true]);
55+
$client = static::createClient(['debug' => false]);
5656

5757
$client->request('GET', '/tracing/ignored-transaction');
5858

0 commit comments

Comments
 (0)