Review of Jose Armando Garcia Sancio's std.log

Steven Schveighoffer schveiguy at yahoo.com
Wed Mar 7 04:31:08 PST 2012


On Tue, 06 Mar 2012 22:54:39 -0500, James Miller <james at aatch.net> wrote:

> Surprisingly, I agree with the idea that fatal and critical shouldn't
> throw, or at least shouldn't throw by default, maybe a configuration
> option would allow for that functionality. Logging probably shouldn't
> affect program flow.
>
> Its possible that I may need to log a "critical" error, then do some
> graceful shutdown.

I see this pattern emerging:

try
{
    critical("Connection aborted!");
}
catch(LoggingException e)
{
}

// do graceful shutdown
...

throw SomeError("Connection aborted!");

-Steve


More information about the Digitalmars-d mailing list