Hi All,
I have very large program and loops in my code, which creating very large log.
so, i am keep getting message that log is full.
i does not need log after my execution.
how, i can completely turn off log generation ?
PROC PRINTTO will turn off the log being sent to the LOG window.
You can use it to store the log as a text file outside of SAS so that it doesn't appear in the log window; or write the log to a DUMMY file, so the log no longer appears in the log window and isn't saved anywhere.
Examples are here:
Alternatively
options nosource nonotes;
/* Your SAS program goes here */
options source notes;
You can eliminate many lines of being written to log by options:
options nosource nosource2 nomprint nosymbolgen nomlogic errors=1;
How would you know if your SAS program had any errors then? If you run your program in batch mode there is no limitation on log size and your program would probably run faster as well.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.