-- ===================================================================== -- >>>>>>>>>>>>>>>>>>>>>> ADA COMPILATION UNIT <<<<<<<<<<<<<<<<<<<<<<<<< -- ===================================================================== -- -- NAME: Msg_Log_File -- -- SPECIFICATION -- -- AUTHOR: Chuck Hobin -- -- DATE: 19 March 1992 -- -- CHANGE HISTORY -- -- MM-DD-YY | Initials | Description -- --------------------------------------------------------------------- -- -- -- ===================================================================== -- ===================================================================== with Text_Io; package Msg_Log_File is The_File : Text_Io.File_Type; -- Used by Msg_Log when messages are to be directed to a file other -- than the standard or current output. A third party must create/open -- this file before Msg_Log uses it. end Msg_Log_File;