. * */ if (!defined('BASEPATH')) exit ('No direct script access allowed'); class Coverage_Mgr { protected $CI; /** * Log avec prefix (facilite le filtrage) * */ function start() { $this->CI =& get_instance(); gvv_debug("start coverage"); $this->CI->load->library('PersistentCoverage', '', "cov"); $this->CI->cov->start(); } /** * Log avec prefix (facilite le filtrage) * Niveau info à utiliser pour l'application */ function stop() { $this->CI =& get_instance(); gvv_debug("stop coverage"); $this->CI->load->library('PersistentCoverage', '', "cov"); $this->CI->cov->stop(); } }