Skip to content

Commit 852677b

Browse files
authored
Simplify debug messages (#9)
1 parent 270eaad commit 852677b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MarkClosedPluginAsAbandoned.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function __construct(
4949
public function __invoke(CompletePackageInterface $package): void
5050
{
5151
$this->io->debug(
52-
"Checking whether <info>{$package->getPrettyName()}</info> is closed on <href=https://wordpress.org>https://wordpress.org</>"
52+
"Checking whether <info>{$package->getPrettyName()}</info> is closed on https://wordpress.org"
5353
);
5454

5555
$slug = $this->slug(
@@ -64,7 +64,7 @@ public function __invoke(CompletePackageInterface $package): void
6464
return;
6565
}
6666
$this->io->debug(
67-
"Assuming <info>{$package->getPrettyName()}</info>'s <href=https://wordpress.org/plugins/{$slug}>wordpress.org</> slug is <comment>{$slug}</comment>"
67+
"Assuming <info>{$package->getPrettyName()}</info> is <href=https://wordpress.org/plugins/{$slug}>https://wordpress.org/plugins/<comment>{$slug}</comment></>"
6868
);
6969

7070
$isClosed = $this->client->isClosed($slug);

0 commit comments

Comments
 (0)