Fix the logger type in MSGComponentBase to use the correct class.

This commit is contained in:
Thorsten Sommer 2025-04-17 12:25:44 +02:00
parent 6867393277
commit 36df88a415
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -16,7 +16,7 @@ public abstract class MSGComponentBase : ComponentBase, IDisposable, IMessageBus
protected MessageBus MessageBus { get; init; } = null!; protected MessageBus MessageBus { get; init; } = null!;
[Inject] [Inject]
private ILogger<PluginLanguage> Logger { get; init; } = null!; private ILogger<MSGComponentBase> Logger { get; init; } = null!;
private ILanguagePlugin Lang { get; set; } = PluginFactory.BaseLanguage; private ILanguagePlugin Lang { get; set; } = PluginFactory.BaseLanguage;