Browse Source

#4694 add feedback during installation, monolog

Laurent Opprecht 13 years ago
parent
commit
63eac6738b

+ 2 - 0
main/install/update-db-1.8.5-1.8.6.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.5';
 $new_file_version = '1.8.6';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 // Check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-db-1.8.6-1.8.6.1.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.6';
 $new_file_version = '1.8.6.1';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 //check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-db-1.8.6.1-1.8.6.2.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.6.1';
 $new_file_version = '1.8.6.2';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 // Check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-db-1.8.6.2-1.8.7.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.6.2';
 $new_file_version = '1.8.7';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 // Check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-db-1.8.7-1.8.8.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.7';
 $new_file_version = '1.8.8';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 // Check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-db-1.8.8-1.9.0.inc.php

@@ -20,6 +20,8 @@
 $old_file_version = '1.8.8';
 $new_file_version = '1.9.0';
 
+Log::notice("Starting update db " . $old_file_version . ' -> ' . $new_file_version);
+
 // Check if we come from index.php or update_courses.php - otherwise display error msg
 if (defined('SYSTEM_INSTALLATION')) {
 

+ 2 - 0
main/install/update-files-1.6.x-1.8.0.inc.php

@@ -18,6 +18,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 function insert_db($db_name, $folder_name, $text) {
 
 	// TODO: The (global?) variable $_course has not been declared/initialized.

+ 2 - 0
main/install/update-files-1.8.3-1.8.4.inc.php

@@ -17,6 +17,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file

+ 2 - 0
main/install/update-files-1.8.4-1.8.5.inc.php

@@ -17,6 +17,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file

+ 3 - 0
main/install/update-files-1.8.5-1.8.6.inc.php

@@ -17,6 +17,9 @@
  * version be available until the end of the installation.
  * @package chamilo.install
  */
+
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
     // Edit the configuration file

+ 2 - 0
main/install/update-files-1.8.6-1.8.6.1.inc.php

@@ -17,6 +17,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file

+ 3 - 0
main/install/update-files-1.8.6.1-1.8.6.2.inc.php

@@ -11,6 +11,9 @@
  * current configuration file.
  * @package chamilo.install
  */
+
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
     // Edit the configuration file

+ 3 - 0
main/install/update-files-1.8.6.2-1.8.7.inc.php

@@ -11,6 +11,9 @@
  * @package chamilo.install
  */
 
+
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file

+ 2 - 0
main/install/update-files-1.8.7-1.8.8.inc.php

@@ -11,6 +11,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file

+ 2 - 0
main/install/update-files-1.8.8-1.9.0.inc.php

@@ -11,6 +11,8 @@
  * @package chamilo.install
  */
 
+Log::notice("Starting " . basename(__FILE__));
+
 if (defined('SYSTEM_INSTALLATION')) {
 
 	// Edit the configuration file