diff options
-rw-r--r-- | pear/PEAR/Installer.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php index 9f95e25aa6..416fab9991 100644 --- a/pear/PEAR/Installer.php +++ b/pear/PEAR/Installer.php @@ -715,11 +715,12 @@ class PEAR_Installer extends PEAR_Common $this->rollbackFileTransaction(); return $built; } + $this->log(1, "\nBuild process completed successfully"); foreach ($built as $ext) { $bn = basename($ext['file']); - $this->log(2, "installing $bn"); $dest = $this->config->get('ext_dir') . DIRECTORY_SEPARATOR . $bn; - $this->log(3, "+ cp $ext[file] ext_dir"); + $this->log(1, "Installing '$bn' at ext_dir ($dest)"); + $this->log(3, "+ cp $ext[file] ext_dir ($dest)"); $copyto = $this->_prependPath($dest, $this->installroot); if (!@copy($ext['file'], $copyto)) { $this->rollbackFileTransaction(); |