From 15bb0748c36dce7f53a6382e673654c9b24d83f8 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Thu, 21 May 2020 09:31:12 +0200 Subject: [PATCH] don't output the whole meta element into log file. --- lib/src/kdbx_format.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/kdbx_format.dart b/lib/src/kdbx_format.dart index f4b7fc3..bd2f6a8 100644 --- a/lib/src/kdbx_format.dart +++ b/lib/src/kdbx_format.dart @@ -631,7 +631,7 @@ class KdbxFormat { final rootGroup = KdbxGroup.read(ctx, null, root.findElements('Group').single); - _logger.fine('got meta: ${meta.toXmlString(pretty: true)}'); + _logger.fine('successfully read Meta.'); return KdbxBody.read(keePassFile, kdbxMeta, rootGroup); }