????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/plugins/bloom/subscription/createsend-php-4.0.2/class/
Upload File :
Current File : /home2/morganrand/www/wp-content/plugins/bloom/subscription/createsend-php-4.0.2/class/log.php

<?php
define('CS_REST_LOG_VERBOSE', 1000);
define('CS_REST_LOG_WARNING', 500);
define('CS_REST_LOG_ERROR', 250);
define('CS_REST_LOG_NONE', 0);

class CS_REST_Log {
    var $_level;

    function CS_REST_Log($level) {
        $this->_level = $level;
    }

    function log_message($message, $module, $level) {
        if($this->_level >= $level) {
            echo date('G:i:s').' - '.$module.': '.$message."<br />\n";
        }
    }
}