BIND 10 master, updated. 3327e16875dc619a549247cb4dee855be5d538d5 Merge branch 'trac3314'
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Jan 31 05:07:52 UTC 2014
The branch, master has been updated
via 3327e16875dc619a549247cb4dee855be5d538d5 (commit)
via 7058dd169bfd2491a8735c006ed47ab6e6b59ce7 (commit)
from 1f0e3dc6f4de89e71282eb500a5841ff85693764 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3327e16875dc619a549247cb4dee855be5d538d5
Merge: 1f0e3dc 7058dd1
Author: Mukund Sivaraman <muks at isc.org>
Date: Fri Jan 31 10:27:32 2014 +0530
Merge branch 'trac3314'
-----------------------------------------------------------------------
Summary of changes:
src/lib/log/log_formatter.h | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/log/log_formatter.h b/src/lib/log/log_formatter.h
index 8cb34c7..d336b30 100644
--- a/src/lib/log/log_formatter.h
+++ b/src/lib/log/log_formatter.h
@@ -163,8 +163,12 @@ public:
/// This is the place where output happens if the formatter is active.
~ Formatter() {
if (logger_) {
- checkExcessPlaceholders(message_, ++nextPlaceholder_);
- logger_->output(severity_, *message_);
+ try {
+ checkExcessPlaceholders(message_, ++nextPlaceholder_);
+ logger_->output(severity_, *message_);
+ } catch (...) {
+ // Catch and ignore all exceptions here.
+ }
delete message_;
}
}
More information about the bind10-changes
mailing list