diff options
Diffstat (limited to 'engine/start.php')
-rw-r--r-- | engine/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/start.php b/engine/start.php index 673f83d09..9cb23d7af 100644 --- a/engine/start.php +++ b/engine/start.php @@ -93,7 +93,8 @@ // Include them
- foreach($files as $file) {
+ foreach($files as $file) { + if ($CONFIG->debug) error_log("Loading $file...");
if (!@include_once($file))
throw new InstallationException("Could not load {$file}");
}
|