The CheckLog macro reviews the current SAS log, external logs, or a directory of logs for issues, including lines with error, warning, invalid, or uninitialized messages. Further, additional messages have been identified that can be associated with issues, and some messages are ignored. CheckLog has several additional arguments for managing input, notifications, and how the macro operates.
Feel free to contact me if you have any questions or feedback regarding CheckLog.
Features
See the Arguments page for more details. * In Enterprise Guide, CheckLog cannot export the current log. See the Enterprise Guide page for more details. Documenation | Enterprise GuideSAS Enterprise Guide Users: Please visit the Enterprise Guide page for more documentation about using CheckLog. SubscriptionsSubscribe to updates to the CheckLog macro. DownloadsNote: CheckLog can be run on SAS 9.1.3 or newer. For scripts, review the Scripts page for full instructions.Use NowThe following code will allow users to run the CheckLog macro immediately in the current SAS session./* Download and Compile CheckLog */ filename code url "http://goo.gl/H2zu9"; %include code / nosource; filename code clear; |