From c02af7f15697c997385b8cf31d7c8c9e1401e543 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 17 Oct 2020 11:37:36 +0200 Subject: [PATCH] Avoid unnecessary log Left over from an experiment. Logs only stay on the device, so this wasn't a problem, but it stays constant on Android across installs. It would be nice to use this ID instead the random ID that we generate, but that could be counted as personally identifyable info. I'm not too sure. --- lib/app.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/app.dart b/lib/app.dart index 90945e24..1671c120 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -142,7 +142,6 @@ class JournalApp extends StatefulWidget { if (Platform.isAndroid) { var info = await deviceInfo.androidInfo; isPhysicalDevice = info.isPhysicalDevice; - Log.d("Device Fingerprint: " + info.fingerprint); } else if (Platform.isIOS) { var info = await deviceInfo.iosInfo; isPhysicalDevice = info.isPhysicalDevice;