Index: ui/events/ozone/evdev/touch_event_converter_evdev.cc |
diff --git a/ui/events/ozone/evdev/touch_event_converter_evdev.cc b/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
index 221e6bf72cca3a008bea9105d431249ce826390f..7a73ac57ad5b53f9ec38abac0f64bda3d7015981 100644 |
--- a/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
+++ b/ui/events/ozone/evdev/touch_event_converter_evdev.cc |
@@ -47,13 +47,13 @@ void GetTouchCalibration(TouchCalibration* cal) { |
switches::kTouchCalibration), |
",", &parts) >= 4) { |
if (!base::StringToInt(parts[0], &cal->bezel_left)) |
- DLOG(ERROR) << "Incorrect left border calibration value passed."; |
+ LOG(ERROR) << "Incorrect left border calibration value passed."; |
if (!base::StringToInt(parts[1], &cal->bezel_right)) |
- DLOG(ERROR) << "Incorrect right border calibration value passed."; |
+ LOG(ERROR) << "Incorrect right border calibration value passed."; |
if (!base::StringToInt(parts[2], &cal->bezel_top)) |
- DLOG(ERROR) << "Incorrect top border calibration value passed."; |
+ LOG(ERROR) << "Incorrect top border calibration value passed."; |
if (!base::StringToInt(parts[3], &cal->bezel_bottom)) |
- DLOG(ERROR) << "Incorrect bottom border calibration value passed."; |
+ LOG(ERROR) << "Incorrect bottom border calibration value passed."; |
} |
} |