From fcba1bc526b5b4bed230dcb7b2bbaa70cfbd829d Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Wed, 11 Feb 2026 16:44:45 +0100
Subject: [PATCH] correct logger names
---
core/src/command/BaseCommand.ts | 2 +-
core/src/command/commands/SendEmailCommand.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/command/BaseCommand.ts b/core/src/command/BaseCommand.ts
index 1bb7b7b90..59c76e5fe 100644
--- a/core/src/command/BaseCommand.ts
+++ b/core/src/command/BaseCommand.ts
@@ -3,7 +3,7 @@ import { Command } from './Command';
import { LOG4JS_BASE_CATEGORY_NAME } from '../config/const';
const createLogger = (method: string) =>
- getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.command.CommandExecutor.${method}`)
+ getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.command.BaseCommand.${method}`)
export abstract class BaseCommand implements Command {
protected abstract requiredFields: string[];
diff --git a/core/src/command/commands/SendEmailCommand.ts b/core/src/command/commands/SendEmailCommand.ts
index a034eb025..957e08bc8 100644
--- a/core/src/command/commands/SendEmailCommand.ts
+++ b/core/src/command/commands/SendEmailCommand.ts
@@ -5,7 +5,7 @@ import { LOG4JS_BASE_CATEGORY_NAME } from '../../config/const';
import { getLogger } from 'log4js';
const createLogger = (method: string) =>
- getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.command.CommandExecutor.${method}`)
+ getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.command.commands.SendEmailCommand.${method}`)
export interface SendEmailCommandParams {
mailType: string;