/****************************************************************************** * Programme : Débogage SAS : Prenez le contrôle total de vos logs et sorties avec PUTLOG * Reference : UTILISA130 * Source : https://www.wearecas.eu/en/sampleCode/UTILISA130 ******************************************************************************/ /* --- BLOC 1 --- */ *** putlog ; data test ; put 'This goes to LOG by default' ; file print ; put 'This goes to OUTPUT window, since I selected print' ; putlog 'but this still goes to the LOG' ; put 'This goes to OUTPUT' ; putlog 'NOTE: and I can write proper messages using colours' ; putlog 'WARNING: ...' ; putlog 'ERROR: ...' ; run ;