How do get a report of which sequence is currently running on a sequencer?

In reply to DHDHD:

This information is in your hands. You should issue a uvm_info. Then its indicating which sequences are running.
See my example below:
task apb_default_seq::body();
`uvm_info(get_type_name(),“default sequence starting”, UVM_MEDIUM)
super.body();
item = apb_seq_item::type_id::create(“item”);
begin
start_item(item);
item.data = data;
item.addr = addr;
item.we = we;
item.delay = delay;
finish_item(item);
end
endtask