[Cs-webdbupgrade-commits] SF.net SVN: cs-webdbupgrade:[38] trunk/0.1/cs_webdbupgrade.class.php
Status: Inactive
Brought to you by:
crazedsanity
|
From: <cra...@us...> - 2009-08-13 04:09:27
|
Revision: 38
http://cs-webdbupgrade.svn.sourceforge.net/cs-webdbupgrade/?rev=38&view=rev
Author: crazedsanity
Date: 2009-08-13 04:09:12 +0000 (Thu, 13 Aug 2009)
Log Message:
-----------
Remove some debugging.
NOTE::: this version seems pretty stable, but it is dependent on unreleased
cs-webdblogger v0.2.0. Using older 0.1.x code will cause errors, as this
calls methods in that library that wouldn't exist yet.
/cs_webdbupgrade.class.php:
* perform_upgrade():
-- remove debug printing
* do_log():
-- remove debug logging.
Modified Paths:
--------------
trunk/0.1/cs_webdbupgrade.class.php
Modified: trunk/0.1/cs_webdbupgrade.class.php
===================================================================
--- trunk/0.1/cs_webdbupgrade.class.php 2009-08-13 03:19:31 UTC (rev 37)
+++ trunk/0.1/cs_webdbupgrade.class.php 2009-08-13 04:09:12 UTC (rev 38)
@@ -408,7 +408,6 @@
}
$this->logsObj->suspendLogging=false;
$logsHandled = $this->logsObj->handle_suspended_logs();
- $this->gfObj->debug_print(__METHOD__ .": done, handled (". $logsHandled .") logs that had been suspended... ",1);
}//end perform_upgrade()
//=========================================================================
@@ -1080,7 +1079,6 @@
//=========================================================================
protected function do_log($message, $type) {
- $this->gfObj->debug_print(__METHOD__ .": loggerSuspend=(". $this->logsObj->suspendLogging ."), type=(". $type ."), MESSAGE::: ". $message,1);
$this->debugLogs[] = array('project'=>$this->projectName,'upgradeFile'=>$this->config['UPGRADE_CONFIG_FILE'],'message'=>$message,'type'=>$type);
if($this->internalUpgradeInProgress === true) {
$this->storedLogs[] = func_get_args();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|