Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcadf267 authored by Nick Kralevich's avatar Nick Kralevich Committed by android-build-merger
Browse files

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

Merge "usb_dispatch.cpp: Lower severity of logging statement." am: e5fe799e am: 7fbbd166 am: d44962f6
am: 4a85c4ca

Change-Id: I62762f632b2a75d0d1f8e8533b425a54bcdac5bb
parents 2bd3e9ce 4a85c4ca
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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();
    }
}