<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Pop-up message  &amp;quot;log Window is full, select a choice&amp;quot; appears 15 times per macro-progr in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964167#M375525</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318297"&gt;@makemo&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the end I have resorted to use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log="abc.log"; run;
%macro   
proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;like suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318297"&gt;@makemo&lt;/a&gt;&amp;nbsp;then please mark my suggestion as correct&lt;/P&gt;</description>
    <pubDate>Sat, 12 Apr 2025 12:23:54 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2025-04-12T12:23:54Z</dc:date>
    <item>
      <title>Pop-up message  "log Window is full, select a choice" appears 15 times per macro-program execution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961293#M374765</link>
      <description>&lt;P&gt;I work with "SAS Base" (meaning SAS Windowing Environment).&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have to review the code of another team.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The code inclues a very long macro-program which writes thousand of lines into the log. The log becomes full, a warning window appears (something like : “The log is full, do you want to save it or clean it ?”) and the rest of the macro-program won’t execute until I make a choice.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The problem is, this message appears 15 times for each macro-execution, and I have to execute this macro 12 times in a row. This forces me to manually answer the pop-up message, more than 150 times…&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way out of this nightmare ? In terms of process, splitting the said giant macro-program in 15 tiny macro-programs is a no-go (as much as possible, I have to reperform their code "as is"). &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks everyone !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;PS&amp;nbsp; : the window that pop-ups display the following message :&amp;nbsp;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;EM&gt;"log WINDOW FULL"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"The window is full and must be emptied. Select : &lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;F for File&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;P for Print&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;S for Saving or&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;C for cleaning the window without saving"&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;I would be very happy with hitting "S" or "C" each time, but not manually... I would like to launch the code, automatically save/clean the log when needed, and forget about it until the final result is produced.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 12:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961293#M374765</guid>
      <dc:creator>makemo</dc:creator>
      <dc:date>2025-03-08T12:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961294#M374766</link>
      <description>&lt;P&gt;This code sends the log to a text file which can be as large as you need it to be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log="abc.log"; run;
%yourmacro   /* Your macro call goes in between the two PROC PRINTTO statements */
proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 08 Mar 2025 12:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961294#M374766</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-03-08T12:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961300#M374772</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318297"&gt;@makemo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Routing the SAS log to a file, as &lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892" target="_blank" rel="noopener"&gt;PaigeMiller&lt;/A&gt; suggested, is probably the best solution if you want to avoid that annoying pop-up message entirely.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In addition, you can reduce the size of the log by choosing appropriate system option settings (which might be overridden by OPTION statements in your code, though). For example, if you're not interested in performance statistics (such as cpu time), you can switch off the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostwin/n16kmibbf149o3n1jfmd7xpe5gj3.htm" target="_blank" rel="noopener"&gt;STIMER system option&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; options nostimer;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and similarly the even more verbose &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/hostwin/p07iiwnf85r6lwn1xg9zl58ouvw1.htm" target="_blank" rel="noopener"&gt;FULLSTIMER system option&lt;/A&gt;. As you are talking about a "macro-program", you may want to avoid system options such as &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/p1dhqw0i5yj2m8n15opapnwteqra.htm" target="_blank" rel="noopener"&gt;MPRINT&lt;/A&gt;, &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n0xmqcv92coq2tn1k0z0q6fl2dew.htm" target="_blank" rel="noopener"&gt;MLOGIC&lt;/A&gt; or &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/mcrolref/n0lh4tuknkdkf2n1d4qi7utpyf5n.htm" target="_blank" rel="noopener"&gt;SYMBOLGEN&lt;/A&gt;&amp;nbsp;as well (of course unless you need the additional information provided by these options). Using the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/p17071zptzpruyn1a5hirqyle3r3.htm" target="_blank" rel="noopener"&gt;MSGLEVEL=N&lt;/A&gt; and in particular the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/p1n9y0vee2emq9n1gotajyxubz3x.htm#p1loyd91q29x31n1om23ljioobws" target="_blank" rel="noopener"&gt;NONOTES option&lt;/A&gt; would likely suppress too much valuable information, although the log size reduction could be substantial.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to see the log in the log window and you have been using the default setting of the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/p12fpngfj47y9rn171c024mwx7nt.htm" target="_blank" rel="noopener"&gt;DMSLOGSIZE=&amp;nbsp;system option&lt;/A&gt;, you can reduce the frequency of the log window getting full (by a factor of about 10) by setting that option to MAX at SAS invocation.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 15:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961300#M374772</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-03-08T15:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961342#M374783</link>
      <description>As  FreelanceReinh said ,try these options :&lt;BR /&gt;&lt;BR /&gt;options nonotes nosource nosource2;&lt;BR /&gt;..........your code here.............&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Mar 2025 01:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961342#M374783</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-03-09T01:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961354#M374790</link>
      <description>&lt;P&gt;Do you by any chance have to SAS option MPRINT switched on? If so switching it off should significantly reduce log sizes. Just add this to the start of your program:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nomprint;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Mar 2025 19:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961354#M374790</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-03-09T19:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961357#M374791</link>
      <description>&lt;P&gt;Besides of writing the log to an external file and using options that create less log, you could also try &lt;FONT face="courier new,courier"&gt;OPTIONS DMSLOGSIZE=MAX;&lt;/FONT&gt;&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lesysoptsref/p12fpngfj47y9rn171c024mwx7nt.htm" target="_self"&gt;DMSLOGSIZE=n | nK | hexX | MIN | MAX&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1741551546815.png" style="width: 954px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105298i5DB983037B913EC5/image-dimensions/954x272?v=v2" width="954" height="272" role="button" title="Patrick_0-1741551546815.png" alt="Patrick_0-1741551546815.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 20:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961357#M374791</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2025-03-09T20:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961359#M374792</link>
      <description>&lt;P&gt;Since you say you are looping and calling a macro 12 times you could add code to redirect each call to a separate file.&amp;nbsp; For example say your loop is using a macro variable named I as the loop counter.&amp;nbsp; You might make a different log file for each value of I;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log="somename.&amp;amp;i..log"; run;
%macrocall(....)
proc printto log=log; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also make sure you&amp;nbsp; have options NOMLOGIC and NOSYMBOLGEN if your macro code make extensive use of macro logic and/or macro variables.&amp;nbsp; Those options can produce tons of output.&amp;nbsp; I have had to resort to writing SAS code to strip those lines for SAS logs when trying to help users debug their code because otherwise it was impossible to find the actual code that was run and the NOTES from all of the clutter generated by MLOGIC and SYMBOLGEN.&amp;nbsp; Those options are really only needed when you have to debug your macro logic.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure your code is not generating lots of notes about type conversion or inability to convert text to numbers.&amp;nbsp; Especially if your datasets have a lot of variables those message will produce a LOT of output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Mar 2025 22:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961359#M374792</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-03-09T22:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961492#M374836</link>
      <description>&lt;P&gt;Thank you all for the valuable inputs !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think &lt;STRONG&gt;OPTIONS DMSLOGSIZE=MAX;&lt;/STRONG&gt; won’t cut it since the program writes in fact more than 2 millions lines of log and the maximum size for &lt;STRONG&gt;DMSLOGSIZE &lt;/STRONG&gt;is 999&amp;nbsp;999... But that's indeed a workable trick for possible other codes that produce less log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As of now I have resorted to settle with redirecting the log to a text file through &lt;STRONG&gt;proc printto log="abc.txt"&lt;/STRONG&gt;. But I will give a try to solutions like &lt;STRONG&gt;options nomprint…&lt;/STRONG&gt; and &lt;STRONG&gt;options nonotes…&lt;/STRONG&gt; in order to control how much log precisely is produced by the code. Some of it is totally unecessary, but some of it will help me debug other possible issues.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 22:06:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961492#M374836</guid>
      <dc:creator>makemo</dc:creator>
      <dc:date>2025-03-10T22:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961498#M374838</link>
      <description>&lt;P&gt;Having logs of over 2 million rows sounds excessive. Right now you appear to be fixing the symptom rather than the disease. BTW, if you ran your SAS application as a batch job (sas.exe -sysin MySASPgm.sas) you wouldn't need to use DMSLOGSIZE OR PROC PRINTTO.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 00:12:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/961498#M374838</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-03-11T00:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964164#M375522</link>
      <description>&lt;P&gt;Sorry for long time since last post !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the end I have resorted to use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log="abc.log"; run;
%macro   
proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;like suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;because none of other solutions will work.&lt;BR /&gt;&lt;BR /&gt;Not even the following (cumulation of all options suggested) will work :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nosource nosource2 nonotes nomprint nosymbolgen nomlogic nostimer nofullstimer ; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's very possible that these options do not work because the macro-program is executed inside a rsubmit bloc (I work with data bases located on a Unix server). The code looks like :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;rsubmit ; &lt;BR /&gt;
    %macro macro_name (arguments=) ; 
       ...
    %mend ;
    %macro_name(arguments=value) ; &lt;BR /&gt;
endrsubmit ; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does it make any difference ? &lt;BR /&gt;&lt;BR /&gt;Anyway "proc printo" is doing the trick, so I will stick to that for this one time. &lt;BR /&gt;&lt;BR /&gt;Thanks everybody for the many interesting suggestions !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Apr 2025 09:43:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964164#M375522</guid>
      <dc:creator>makemo</dc:creator>
      <dc:date>2025-04-12T09:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964165#M375523</link>
      <description>I perfectly agree. But I'm also limited by the fact I'm only reviewing the code of another team. I'm supposed to execute their program as is, even if it means signaling later (as I did) that their code is heavily verbose in log.</description>
      <pubDate>Sat, 12 Apr 2025 09:38:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964165#M375523</guid>
      <dc:creator>makemo</dc:creator>
      <dc:date>2025-04-12T09:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964166#M375524</link>
      <description>Thanks for the answer, this is the solution that worked in the end. But I can only select one post as solution for the the thread, so I took the solution of &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt; which is contains "proc printo" solution too, but is more complete as it includes additional solutions related to SAS macro language.</description>
      <pubDate>Sat, 12 Apr 2025 09:42:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964166#M375524</guid>
      <dc:creator>makemo</dc:creator>
      <dc:date>2025-04-12T09:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Pop-up message  "log Window is full, select a choice" appears 15 times per macro-progr</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964167#M375525</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318297"&gt;@makemo&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the end I have resorted to use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log="abc.log"; run;
%macro   
proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;like suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/318297"&gt;@makemo&lt;/a&gt;&amp;nbsp;then please mark my suggestion as correct&lt;/P&gt;</description>
      <pubDate>Sat, 12 Apr 2025 12:23:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Pop-up-message-quot-log-Window-is-full-select-a-choice-quot/m-p/964167#M375525</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-04-12T12:23:54Z</dc:date>
    </item>
  </channel>
</rss>

