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

Unified Diff: chrome/browser/history/visit_database.cc

Issue 693693004: [content/browser/history] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « chrome/browser/history/history_backend.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/visit_database.cc
diff --git a/chrome/browser/history/visit_database.cc b/chrome/browser/history/visit_database.cc
index 9a14490e91ebd2cdfd1d10447f522d6250c8523e..3891d70b0adb9a006374e2c7f20cda75df3c3db4 100644
--- a/chrome/browser/history/visit_database.cc
+++ b/chrome/browser/history/visit_database.cc
@@ -154,8 +154,8 @@ VisitID VisitDatabase::AddVisit(VisitRow* visit, VisitSource source) {
statement.BindInt64(5, visit->visit_duration.ToInternalValue());
if (!statement.Run()) {
- VLOG(0) << "Failed to execute visit insert statement: "
- << "url_id = " << visit->url_id;
+ DVLOG(0) << "Failed to execute visit insert statement: "
+ << "url_id = " << visit->url_id;
return 0;
}
@@ -169,8 +169,8 @@ VisitID VisitDatabase::AddVisit(VisitRow* visit, VisitSource source) {
statement1.BindInt64(1, source);
if (!statement1.Run()) {
- VLOG(0) << "Failed to execute visit_source insert statement: "
- << "id = " << visit->visit_id;
+ DVLOG(0) << "Failed to execute visit_source insert statement: "
+ << "id = " << visit->visit_id;
return 0;
}
}
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698