BIND 10 trac3160, updated. 6faa17ef4f22d11d3fc653680d073ac61197d6b3 [3160] Log text representation of the AbstractRRset (contd.)

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Sep 12 20:44:40 UTC 2013


The branch, trac3160 has been updated
       via  6faa17ef4f22d11d3fc653680d073ac61197d6b3 (commit)
      from  66fadfe15f6cb482f9aa4f1d87177c872d16bbae (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 6faa17ef4f22d11d3fc653680d073ac61197d6b3
Author: Mukund Sivaraman <muks at isc.org>
Date:   Fri Sep 13 02:09:24 2013 +0530

    [3160] Log text representation of the AbstractRRset (contd.)

-----------------------------------------------------------------------

Summary of changes:
 src/lib/datasrc/database.cc |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/database.cc b/src/lib/datasrc/database.cc
index 9c85054..6cd1c5d 100644
--- a/src/lib/datasrc/database.cc
+++ b/src/lib/datasrc/database.cc
@@ -718,11 +718,11 @@ DatabaseClient::Finder::logAndCreateResult(
         if (wildname == NULL) {
             LOG_DEBUG(logger, DBG_TRACE_DETAILED, log_id).
                 arg(accessor_->getDBName()).arg(name).arg(type).
-                arg(getClass()).arg(*rrset);
+                arg(getClass()).arg(rrset->toText());
         } else {
             LOG_DEBUG(logger, DBG_TRACE_DETAILED, log_id).
                 arg(accessor_->getDBName()).arg(name).arg(type).
-                arg(getClass()).arg(*wildname).arg(*rrset);
+                arg(getClass()).arg(*wildname).arg(rrset->toText());
         }
     } else {
         if (wildname == NULL) {
@@ -929,11 +929,11 @@ DatabaseClient::Finder::findOnNameResult(const Name& name,
                 LOG_DEBUG(logger, DBG_TRACE_DETAILED,
                           DATASRC_DATABASE_WILDCARD_MATCH).
                     arg(accessor_->getDBName()).arg(*wildname).
-                    arg(wti->second);
+                    arg(wti->second->toText());
             } else {
                 LOG_DEBUG(logger, DBG_TRACE_DETAILED,
                           DATASRC_DATABASE_FOUND_RRSET).
-                    arg(accessor_->getDBName()).arg(*wti->second);
+                    arg(accessor_->getDBName()).arg(wti->second->toText());
             }
         }
         // Found an RR matching the query, so return it.  (Note that this
@@ -1139,7 +1139,7 @@ DatabaseClient::Finder::findNSEC3(const Name& name, bool recursive) {
 
             LOG_DEBUG(logger, DBG_TRACE_BASIC,
                       DATASRC_DATABASE_FINDNSEC3_MATCH).arg(name).arg(labels).
-                arg(*it->second);
+                arg(it->second->toText());
             // Yes, we win
             return (FindNSEC3Result(true, labels, it->second, covering_proof));
         } else {
@@ -1174,7 +1174,7 @@ DatabaseClient::Finder::findNSEC3(const Name& name, bool recursive) {
             if (!recursive) {
                 LOG_DEBUG(logger, DBG_TRACE_BASIC,
                           DATASRC_DATABASE_FINDNSEC3_COVER).arg(name).
-                    arg(labels).arg(*covering_proof);
+                    arg(labels).arg(covering_proof->toText());
                 return (FindNSEC3Result(false, labels, covering_proof,
                                         ConstRRsetPtr()));
             }



More information about the bind10-changes mailing list