Browse Source

[1578] unrelated doc fix: corrected description of MEM_SUPER_STOP log.

JINMEI Tatuya 13 years ago
parent
commit
7074f97e8f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/lib/datasrc/datasrc_messages.mes
  2. 1 1
      src/lib/datasrc/memory_datasrc.cc

+ 1 - 1
src/lib/datasrc/datasrc_messages.mes

@@ -376,7 +376,7 @@ Some resource types are singletons -- only one is allowed in a domain
 % DATASRC_MEM_SUCCESS query for '%1/%2' successful
 % DATASRC_MEM_SUCCESS query for '%1/%2' successful
 Debug information. The requested record was found.
 Debug information. The requested record was found.
 
 
-% DATASRC_MEM_SUPER_STOP stopped at superdomain '%1', domain '%2' is empty
+% DATASRC_MEM_SUPER_STOP stopped at subdomain of '%1', meaning it's empty
 Debug information. The search stopped at a superdomain of the requested
 Debug information. The search stopped at a superdomain of the requested
 domain. The domain is an empty nonterminal, therefore it is treated  as NXRRSET
 domain. The domain is an empty nonterminal, therefore it is treated  as NXRRSET
 case (eg. the domain exists, but it doesn't have the requested record type).
 case (eg. the domain exists, but it doesn't have the requested record type).

+ 1 - 1
src/lib/datasrc/memory_datasrc.cc

@@ -697,7 +697,7 @@ struct InMemoryZoneFinder::InMemoryZoneFinderImpl {
                 if (node_path.getLastComparisonResult().getRelation() ==
                 if (node_path.getLastComparisonResult().getRelation() ==
                     NameComparisonResult::SUPERDOMAIN) {
                     NameComparisonResult::SUPERDOMAIN) {
                     LOG_DEBUG(logger, DBG_TRACE_DATA, DATASRC_MEM_SUPER_STOP).
                     LOG_DEBUG(logger, DBG_TRACE_DATA, DATASRC_MEM_SUPER_STOP).
-                        arg(node_path.getAbsoluteName()).arg(name);
+                        arg(name);
                     return (createFindResult(NXRRSET, ConstRRsetPtr(), false));
                     return (createFindResult(NXRRSET, ConstRRsetPtr(), false));
                 }
                 }