示例#1
0
文件: LPC_Object.php 项目: Gutza/LPC
	/**
	* Just a placeholder for now; used for logging SQL changes (insert, delete...)
	*/
	function log($type)
	{
		if ($this->noLogging || !$this->loggableChange)
			return;

		LPC_Logger::doLog($type, $this);

		$this->loggableChange=false; // reset for the next change
	}
示例#2
0
文件: LPC_Logger.php 项目: Gutza/LPC
	function renewStatic()
	{
		self::$logObj=NULL;
	}