Hello, I want to suppress notes like these from being printed to the log in SAS studio: NOTE: The UUID '9c7282ec-f599-444f-8cc2-e01054aab92f' is connected using session MYSESS.
NOTE: The Cloud Analytic Services server processed the request in 0.000225 seconds.
NOTE: The UUID '9c7282ec-f599-444f-8cc2-e01054aab92f' is connected using session MYSESS.
NOTE: The Cloud Analytic Services server processed the request in 0.00078 seconds. I know that I can use this system option to suppress all notes: options nonotes; However there are some notes that I want to see, so I am wondering if there is some kind of option that only suppress the specific notes above, similar to how this system option specifically suppress notes about real time and cpu time: options nostimer; I have tried the session option messagelevel, and that did get rid of some other unwanted notes, but not the ones from above: cas mysess sessopts=(caslib=casuser messagelevel=warning); In case it matters, I am using SAS 9.4 / Viya 3.5 in SAS Studio 5.2. One workaround would be to turn the notes system option on and off throughout the code... But hoping that there is a specific option/setting to accomplish this?
... View more