options nosource; * suppress SAS statements to the log;
options nosource2; * suppress print of macro files to the log;
options notes; * suppress all messages starting with NOTE;
But errors will still be printed out. You can also suppress all three by using:
options nosource nosource2 notes;