From 4e163f415bc71b5c1df74e5f271a484d6c70960a Mon Sep 17 00:00:00 2001 From: Koen Van Looveren Date: Thu, 14 Mar 2024 22:52:06 +0100 Subject: [PATCH] fix: logger context for 1password --- CHANGELOG.md | 6 ++++++ .../one_password/plugin/one_password_plugin.dart | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e07c8..89f946f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.13.8 + +## Fix + +- Logger context for onepassword + # 0.13.7 ## Fix diff --git a/lib/src/integrations/one_password/plugin/one_password_plugin.dart b/lib/src/integrations/one_password/plugin/one_password_plugin.dart index 5a47a95..5487665 100644 --- a/lib/src/integrations/one_password/plugin/one_password_plugin.dart +++ b/lib/src/integrations/one_password/plugin/one_password_plugin.dart @@ -62,7 +62,7 @@ class OnePasswordPlugin extends ImpaktfullCliPlugin { ], ], log: - 'Downloading file from 1Password ${logContext == null ? null : '($logContext)'}', + 'Downloading file from 1Password ${logContext == null ? '' : '($logContext)'}', rawServiceAccount: rawServiceAccount, ); return exportFile;