Welcome Guest, Not a member yet? Register   Sign In
Using model - issue while using methods
#2

[eluser]GSV Sleeper Service[/eluser]
looks like it's conflicting with the CI logging class, take a look at systems/codeigniter/Common.php
Code:
/**
* Error Logging Interface
*
* We use this as a simple mechanism to access the logging
* class and send messages to be logged.
*
* @access    public
* @return    void
*/
function log_message($level = 'error', $message, $php_error = FALSE)
{
    static $LOG;
    
    $config =& get_config();
    if ($config['log_threshold'] == 0)
    {
        return;
    }

    $LOG =& load_class('Log');
    $LOG->write_log($level, $message, $php_error);
}


Messages In This Thread
Using model - issue while using methods - by El Forum - 12-23-2008, 07:41 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 07:47 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 07:53 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 08:17 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 08:36 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 08:38 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 08:59 AM
Using model - issue while using methods - by El Forum - 12-23-2008, 10:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB