/home/arranoyd/magicraft/wp-content/plugins/ninja-popups/include/campaignmonitor/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);


if (!class_exists('CS_REST_Log')) {
	class CS_REST_Log
    {
    	var $_level;

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

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