Skip to content

Commit 733dea8

Browse files
authored
fix: disable echo in the preload file (#9825)
fix
1 parent b36e7d3 commit 733dea8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

preload.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ public function load(): void
101101
}
102102

103103
require_once $file[0];
104-
echo 'Loaded: ' . $file[0] . "\n";
104+
// Uncomment only for debugging (to inspect which files are included).
105+
// Never use this in production - preload scripts must not generate output.
106+
// echo 'Loaded: ' . $file[0] . "\n";
105107
}
106108
}
107109
}

0 commit comments

Comments
 (0)