fix: Make logging less verbose

This commit is contained in:
PapaTutuWawa 2022-12-27 12:49:11 +01:00
parent 6a9e98665d
commit 4085631804

View File

@ -398,7 +398,10 @@ class OmemoManager {
.toList();
}
if (bundlesToFetch.isNotEmpty) {
_log.finest('Fetching bundles $bundlesToFetch for $jid');
}
final newBundles = List<OmemoBundle>.empty(growable: true);
for (final id in bundlesToFetch) {
final bundle = await fetchDeviceBundle(jid, id);