From ac8cf7a461d813d68939713a4c2d14f4851c9af4 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Fri, 21 Jan 2022 11:30:23 +0100 Subject: [PATCH] Remove leftover logging from debugging. --- lib/oath/state.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/oath/state.dart b/lib/oath/state.dart index 473c01bb..c3340083 100755 --- a/lib/oath/state.dart +++ b/lib/oath/state.dart @@ -99,11 +99,8 @@ class OathStateNotifier extends StateNotifier { } Future _checkPassword(String password) async { - log.info('Calling check password $password'); var result = await _session.command('derive', params: {'password': password}); - log.info( - 'Check ${_ref.read(_lockKeyProvider(_session.devicePath))} == ${result['key']}'); return _ref.read(_lockKeyProvider(_session.devicePath)) == result['key']; }