Skip to content

Commit

Permalink
Log device BRAND
Browse files Browse the repository at this point in the history
The BRAND value is not always the same as the MANUFACTURER value.
  • Loading branch information
rom1v committed Jun 16, 2023
1 parent 3b7e2ca commit 48a00fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main/java/com/genymobile/scrcpy/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private static void initAndCleanUp(Options options) {
}

private static void scrcpy(Options options) throws IOException, ConfigurationException {
Ln.i("Device: " + Build.MANUFACTURER + " " + Build.MODEL + " (Android " + Build.VERSION.RELEASE + ")");
Ln.i("Device: [" + Build.MANUFACTURER + "] " + Build.BRAND + " " + Build.MODEL + " (Android " + Build.VERSION.RELEASE + ")");
final Device device = new Device(options);

Thread initThread = startInitThread(options);
Expand Down

0 comments on commit 48a00fb

Please sign in to comment.