From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cffdfe36d5691052,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-27 20:18:52 PST Path: newsfeed.google.com!newsfeed.stanford.edu!paloalto-snf1.gtei.net!news.gtei.net!enews.sgi.com!coop.net!newsfeed1.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: Paul Storm Newsgroups: comp.lang.ada Subject: Newbie with a question Date: Fri, 27 Apr 2001 14:46:04 -0700 Organization: rse Message-ID: <3AE9E89C.5B6909E1@lmco.com> NNTP-Posting-Host: 129.197.40.5 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.5 [en] (WinNT; U) X-Accept-Language: en Xref: newsfeed.google.com comp.lang.ada:7008 Date: 2001-04-27T14:46:04-07:00 List-Id: I am fairly new to Ada. I am working on a program and have created the following excerpt. if ( Type_Is_Buffer and not Buffer_Found ) then Log_Error ( Source => Source, Message => "Put message here about missing buffer size" , Verbosity => Default_Verbosity ) ; raise Data_Point_Buffer_Size_Needed_Error ; end if; If this section of code runs the exception is raised and execution abends. But the message is not put into the log. Which should be done by the Log_Error call. The Log_Error procedure is legacy code and works fine elsewhere in the program. Anyone have suggestions as to why this would be the case?