Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Unified Diff: net/dns/record_parsed.cc

Issue 177373013: [mDNS] Move logging from LOG(WARNING) to DVLOG(1) to not spam the console (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/dns/mdns_client_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/record_parsed.cc
diff --git a/net/dns/record_parsed.cc b/net/dns/record_parsed.cc
index bee6c7aac63a228444adb6aee3bb7bfcdf0ffae9..36ff129e5def8c00a034285c515bf3fb70c890c4 100644
--- a/net/dns/record_parsed.cc
+++ b/net/dns/record_parsed.cc
@@ -53,7 +53,7 @@ scoped_ptr<const RecordParsed> RecordParsed::CreateFrom(
rdata = NsecRecordRdata::Create(record.rdata, *parser);
break;
default:
- LOG(WARNING) << "Unknown RData type for recieved record: " << record.type;
+ DVLOG(1) << "Unknown RData type for recieved record: " << record.type;
return scoped_ptr<const RecordParsed>();
}
« no previous file with comments | « net/dns/mdns_client_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698