Skip to content

Commit 742bcfb

Browse files
committed
Add a debug log for ignored URL paths
1 parent 55495d1 commit 742bcfb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/FileIgnorePattern.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ public function matchesPath(
7070
string $path,
7171
): bool {
7272
if ( preg_match( $this->regex, $path ) ) {
73-
// WsLog::l(
74-
// "Ignoring $path with regex $this->regex"
75-
// );
73+
WsLog::d( "Ignoring $path with regex $this->regex" );
7674
return true;
7775
}
7876

0 commit comments

Comments
 (0)