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

Unverified Commit 510685ab authored by Danny Lin's avatar Danny Lin
Browse files

fastboot: Clean up debug logging

parent 272c0895
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ export class FastbootDevice {
        // Send raw UTF-8 command
        let cmdPacket = new TextEncoder("utf-8").encode(command);
        await this.device.transferOut(0x01, cmdPacket);
        common.logDebug("command:", command);
        common.logDebug("Command:", command);

        return this._readResponse();
    }
@@ -372,7 +372,6 @@ export class FastbootDevice {
            i += 1;
        }

        common.logDebug(`Finished sending payload`);
        onProgress(1.0);
    }