AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 18.188.211.58


Current Path : /var/www/lhjmq-records.qc.ca/public_html/includes/
Upload File :
Current File : /var/www/lhjmq-records.qc.ca/public_html/includes/applogger.php

<?php

if(!defined("CLS_APPLOGGER")) {	
	define("CLS_APPLOGGER","");

	class CAppLogger
	{ 
		var $LOG_LEVEL_ALL = 0;
		var $LOG_LEVEL_INFO = 1;

		var $logging;

		var $log_level;

		// constructor
		function CAppLogger() 
		{ 
			$this->logging = TRUE; // default to TRUE

			$this->log_level = $this->LOG_LEVEL_ALL;
		} 

		function info($msg)
		{
			if($this->logging) {

				if ($this->log_level <= $this->LOG_LEVEL_INFO){
					if (($_GET['display'] != 'excel') && ($_GET['textformat'] != '1')){
						echo '<!-- Log Info ## ' . $msg . ' ## -->';
					}
				};
			}
		}


	} 
}

?>