- ⌂ comand
- Configurations
- Methods
- Static Methods
comand::get_event_log()
Returns the event log kept by this comand instance.
Prototype
log get_event_log()
Example
$comand = new comand();
$repo = $comand->connect();
if( !$repo ) {
$log = $comand->get_event_log();
echo("<p>Could not connected to repository:</p>" . $log->as_html());
}