Log if the private key is not empty in the settings

It typically shouldn't be
This commit is contained in:
Vishesh Handa
2020-11-11 13:44:24 +01:00
parent 2b252d6401
commit b54e8018af

View File

@ -353,6 +353,7 @@ class Settings extends ChangeNotifier {
'storeInternally': storeInternally.toString(),
'storageLocation': storageLocation,
'sshPublicKey': sshPublicKey.isNotEmpty.toString(),
'sshPrivateKey': sshPrivateKey.isNotEmpty.toString(),
};
}