gradido/core/src/graphql/logic/processCommand.ts
clauspeterhuebner 3ce4b92d0f linting
2026-02-19 02:30:53 +01:00

15 lines
452 B
TypeScript

import { getLogger } from 'log4js'
import { LOG4JS_BASE_CATEGORY_NAME } from '../../config/const'
const createLogger = (method: string) =>
getLogger(`${LOG4JS_BASE_CATEGORY_NAME}.graphql.resolver.logic.processCommand.${method}`)
export async function processCommand(
commandClass: string,
commandMethod: string,
commandArgs: string[],
) {
const methodLogger = createLogger(`processCommand`)
methodLogger.info('processing a command...')
}