From 35717ef8d0b0339b88b6fc43577429e157be6b99 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 24 Apr 2023 15:17:28 +0200 Subject: [PATCH] remove dbg log --- plugins/persisted-scope/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/persisted-scope/src/lib.rs b/plugins/persisted-scope/src/lib.rs index b111ded2..0c6256b0 100644 --- a/plugins/persisted-scope/src/lib.rs +++ b/plugins/persisted-scope/src/lib.rs @@ -90,7 +90,7 @@ pub fn init() -> TauriPlugin { for allowed in &scope.allowed_paths { let allowed = fix_pattern(&ac, allowed); - let _ = fs_scope.allow_file(&dbg!(allowed)); + let _ = fs_scope.allow_file(allowed); #[cfg(feature = "protocol-asset")] let _ = asset_protocol_scope.allow_file(&allowed); }