From 2943124b53feb2c8ae2b68dab372c916a907fcb1 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 13:36:31 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=201:=20Added=20an=20import?= =?UTF-8?q?=20for=20the=20Logger=20type.=20The=20error=20BC30002=20indicat?= =?UTF-8?q?es=20that=20the=20type=20'Logger'=20is=20not=20defined.=20Since?= =?UTF-8?q?=20the=20existing=20import=20is=20for=20the=20namespace=20'Digi?= =?UTF-8?q?talData.Modules.Logging',=20it's=20possible=20that=20'Logger'?= =?UTF-8?q?=20is=20a=20type=20within=20that=20namespace=20or=20a=20sub-nam?= =?UTF-8?q?espace.=20Adding=20an=20explicit=20import=20for=20'DigitalData.?= =?UTF-8?q?Modules.Logging.Logger'=20may=20resolve=20the=20missing=20type?= =?UTF-8?q?=20error.=E2=80=9C=20in=20Datei=20=E2=80=9EEncryption\Compressi?= =?UTF-8?q?on.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Encryption/Compression.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/Encryption/Compression.vb b/Encryption/Compression.vb index a1d5027e..49ce63d9 100644 --- a/Encryption/Compression.vb +++ b/Encryption/Compression.vb @@ -1,6 +1,7 @@ Imports System.IO Imports System.IO.Compression Imports DigitalData.Modules.Logging +Imports DigitalData.Modules.Logging.Logger Public Class Compression Private ReadOnly _logger As Logger