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

Side by Side Diff: ui/display/manager/chromeos/touchscreen_util.cc

Issue 2721633002: Remove unneeded verbose logging for displays. (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « ui/display/manager/chromeos/display_change_observer.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/display/manager/chromeos/touchscreen_util.h" 5 #include "ui/display/manager/chromeos/touchscreen_util.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 << " (size: " << device->size.ToString() 269 << " (size: " << device->size.ToString()
270 << ", sys_path: " << device->sys_path.LossyDisplayName() << ")"; 270 << ", sys_path: " << device->sys_path.LossyDisplayName() << ")";
271 } 271 }
272 272
273 AssociateInternalDevices(&displays, &devices); 273 AssociateInternalDevices(&displays, &devices);
274 AssociateUdlDevices(&displays, &devices); 274 AssociateUdlDevices(&displays, &devices);
275 AssociateSameSizeDevices(&displays, &devices); 275 AssociateSameSizeDevices(&displays, &devices);
276 AssociateToSingleDisplay(&displays, &devices); 276 AssociateToSingleDisplay(&displays, &devices);
277 277
278 for (const ManagedDisplayInfo* display : displays) 278 for (const ManagedDisplayInfo* display : displays)
279 LOG(WARNING) << "Unmatched display " << display->name(); 279 VLOG(2) << "Unmatched display " << display->name();
280 for (const ui::TouchscreenDevice* device : devices) 280 for (const ui::TouchscreenDevice* device : devices)
281 LOG(WARNING) << "Unmatched device " << device->name; 281 LOG(WARNING) << "Unmatched device " << device->name;
282 } 282 }
283 283
284 } // namespace display 284 } // namespace display
OLDNEW
« no previous file with comments | « ui/display/manager/chromeos/display_change_observer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698