Take the statement P ⟹ Q ⟹ P ∧ Q as an example. You may prove it with:
lemma dummy: "P ⟹ Q ⟹ P ∧ Q"
proof
assume "P" "Q"
show "P" by fact
show "Q" by fact
qed
Here the proof command chooses some proof method, which generates two subtasks, a proof of P, followed by a proof of Q.
Is there a way for me to find out which method was chosen by proof?
Note: I know the proof method chosen here was rule conjI, my question is for the general case.