Merge "usb_dispatch.cpp: Lower severity of logging statement."

This commit is contained in:
Treehugger Robot 2017-02-02 00:34:19 +00:00 committed by Gerrit Code Review
commit e5fe799e32

View file

@ -24,10 +24,10 @@ static bool should_use_libusb() {
void usb_init() {
if (should_use_libusb()) {
LOG(INFO) << "using libusb backend";
LOG(DEBUG) << "using libusb backend";
libusb::usb_init();
} else {
LOG(INFO) << "using native backend";
LOG(DEBUG) << "using native backend";
native::usb_init();
}
}