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;