From 270516b30d92fc6da077345f8c3dc438181a17fd Mon Sep 17 00:00:00 2001 From: Peter Giacomo Lombardo Date: Thu, 5 Oct 2023 10:17:32 +0200 Subject: [PATCH] Remove ILogger --- Source/HiveMQtt/Client/HiveMQClientLogger.cs | 26 -------------------- 1 file changed, 26 deletions(-) delete mode 100644 Source/HiveMQtt/Client/HiveMQClientLogger.cs diff --git a/Source/HiveMQtt/Client/HiveMQClientLogger.cs b/Source/HiveMQtt/Client/HiveMQClientLogger.cs deleted file mode 100644 index 3f5ab853..00000000 --- a/Source/HiveMQtt/Client/HiveMQClientLogger.cs +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2022-present HiveMQ and the HiveMQ Community - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -namespace HiveMQtt.Client; - -using Microsoft.Extensions.Logging; - -/// -public partial class HiveMQClient : IDisposable, IHiveMQClient -{ - private ILogger _logger; - - public void AttachLogger(ILogger logger) => this._logger = logger; -}