Check what are your default settings:
proc options;
run;
If by default they are turned on, then you will need to turn them off:
add --> OPTIONS NOSYMBOLGEN NOMPRINT NOMLOGIC; to --> go to Tools>options>SAS Programs>Submit SAS code when server is connected.
You can turn them on at the beginning of your program and don't forget to turn them off again at the end to suppress the log for the macro that runs after code is submitted.
... View more