Logs should be created at the same location as programs and should be named as programs. I tried running the below test.sas code in which I included multiple SAS programs, but it doesnt create the log files separately instead writing everything to test.log file. I would like to have the log files created for each SAS program, something like test2.log, test3.log, test4.log
Content of test.sas is as below.
%INCLUDE '\\XYZ\test2.sas';
%INCLUDE '\\XYZ\test3.sas';
%INCLUDE '\\XYZ\test4.sas';
... View more