Skip to content

Commit 920f0d1

Browse files
committed
Simplify debug messages
1 parent c52869f commit 920f0d1

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
@@ -77,7 +77,7 @@ public function warmCache(CompletePackageInterface ...$packages): void
7777
public function __invoke(CompletePackageInterface $package): void
7878
{
7979
$this->io->debug(
80-
"Checking whether <info>{$package->getPrettyName()}</info> is closed on <href=https://wordpress.org>https://wordpress.org</>"
80+
"Checking whether <info>{$package->getPrettyName()}</info> is closed on https://wordpress.org"
8181
);
8282

8383
$slug = $this->slug(
@@ -92,7 +92,7 @@ public function __invoke(CompletePackageInterface $package): void
9292
return;
9393
}
9494
$this->io->debug(
95-
"Assuming <info>{$package->getPrettyName()}</info>'s <href=https://wordpress.org/plugins/{$slug}>wordpress.org</> slug is <comment>{$slug}</comment>"
95+
"Assuming <info>{$package->getPrettyName()}</info> is <href=https://wordpress.org/plugins/{$slug}>https://wordpress.org/plugins/<comment>{$slug}</comment></>"
9696
);
9797

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

0 commit comments

Comments
 (0)