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

Commit 232c9418 authored by Jayant Chowdhary's avatar Jayant Chowdhary
Browse files

camera2: Make debug log for ReprocessFormatsMap more readable



Since the image format is in hex, add 0x.

Bug: N/A

Test: build

Flag: EXEMPT; log format fix

Change-Id: I8340d9264212fd593ff52d7bcc6df3ba43d34d81
Signed-off-by: default avatarJayant Chowdhary <jchowdhary@google.com>
parent 724fa3f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ public final class ReprocessFormatsMap {
        }

        throw new IllegalArgumentException(
                String.format("Input format %x was not one in #getInputs", format));
                String.format("Input format 0x%x was not one in #getInputs", format));
    }

    /**