function index()
{
log_message('debug', ucfirst(get_class($this))." module: No index method defined");
}
function _error($method) //called by modules::run() if method is missing
{
log_message('error', ucfirst(get_class($this))." module: No ".$method." method defined");
}
}