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

Unified Diff: ash/touch/touchscreen_util.cc

Issue 1878393002: Emit warning when touchscreen association fails. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/touch/touchscreen_util.cc
diff --git a/ash/touch/touchscreen_util.cc b/ash/touch/touchscreen_util.cc
index d6538e38d12be4dcaaf847b6be6e2c2c99d8ebf8..224a06b632edde5099a62067daafa59c12037000 100644
--- a/ash/touch/touchscreen_util.cc
+++ b/ash/touch/touchscreen_util.cc
@@ -274,9 +274,9 @@ void AssociateTouchscreens(
AssociateToSingleDisplay(&displays, &devices);
for (const DisplayInfo* display : displays)
- VLOG(1) << "Unmatched display " << display->name();
+ LOG(WARNING) << "Unmatched display " << display->name();
for (const ui::TouchscreenDevice* device : devices)
- VLOG(1) << "Unmatched device " << device->name;
+ LOG(WARNING) << "Unmatched device " << device->name;
}
} // namespace ash
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698