if you are using CI 2.0.2 you need to read this article before using my, or any other sparks for that matter. 2.0.2 has a bug with the loader class that breaks the sparks MY_Loader extension thereof. http://codefury.net/2011/05/getsparks-org-beta-released-big-changes/
Fire Log is a spark that lets you browse all the log files in your application/logs directory.
- You can filter what types of items you would like to view DEBUG, ERROR, INFO
- You can delete logs files from Fire Log to clear out your logs
- Fire log uses a view that you can easily customize
- You can change if tags are stripped in logs or not from the config
- Language file for all text used
Really Simple...
// in your controller
function logs(){
/*
highly advised that you use authentification
before running this controller to keep the world out of your logs!!!
you can use whatever method you like does not have to be logs
*/
$this->load->spark( 'fire_log/x.x');
// thats it, ill take if from there
}