I have many DBMS_OUTPUT.put_line in a procedure, but when I launch it I only have this message in the SQL Developer console : 
anonymous block completed
This is how I launch my procedure :
BEGIN
  MY_PROCEDURE();
  commit;
END;
How to fix that ?
