Skip to content

Commit 88c2d09

Browse files
author
Alexandru Florea
committed
debug: Change log level to info
1 parent 8fb799e commit 88c2d09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Services/ObfuscationService.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -650,22 +650,22 @@ protected function copyDirectoryRecursive(
650650
foreach ($excludeDirs as $excludeDir) {
651651
if ($item === $excludeDir || $relativePath === $excludeDir || str_starts_with($relativePath, $excludeDir . DIRECTORY_SEPARATOR)) {
652652
$shouldExclude = true;
653-
$this->log('debug', "Excluding directory (config): $relativePath");
653+
$this->log('info', "Excluding directory (config): $relativePath");
654654
break;
655655
}
656656
}
657657

658658
// Skip the output directory itself to avoid recursion
659659
if ($sourcePath === $outputRoot || str_starts_with($sourcePath, $outputRoot . DIRECTORY_SEPARATOR)) {
660660
$shouldExclude = true;
661-
$this->log('debug', "Excluding directory (output root): $relativePath");
661+
$this->log('info', "Excluding directory (output root): $relativePath");
662662
}
663663

664664
if (!$shouldExclude) {
665-
$this->log('debug', "Copying directory: $relativePath");
665+
$this->log('info', "Copying directory: $relativePath");
666666
$this->copyDirectoryRecursive($sourcePath, $destPath, $outputRoot, $excludeDirs, $excludeFiles, $alwaysInclude);
667667
} else {
668-
$this->log('debug', "Skipped directory: $relativePath");
668+
$this->log('info', "Skipped directory: $relativePath");
669669
}
670670
} else {
671671
// Skip excluded files

0 commit comments

Comments
 (0)