$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Dale Peakall (dale.peakall_at_[hidden])
Date: 2002-04-09 04:27:45
> On the subject of other requirements, there's a need to support
> many sinks: files, syslog, nt event log all spring to mind, there's
> need for both logging levels and multiple
...
logs so I can trace different aspects / sub-systems.
Thread safety is critical for multi-threaded apps, and it's not
generally too difficult to switch whether you use synchronisation
concepts on the basis of _MT. You certainly don't want to have
to deal with this manually every time you use a log line. That's
guaranteed to lead to errors.
- Dale.