mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(core): Modernize logger service (#11031)
This commit is contained in:
@@ -365,10 +365,9 @@ export class Start extends BaseCommand {
|
||||
|
||||
if (executions.length === 0) return;
|
||||
|
||||
this.logger.debug(
|
||||
'[Startup] Found enqueued executions to run',
|
||||
executions.map((e) => e.id),
|
||||
);
|
||||
this.logger.debug('[Startup] Found enqueued executions to run', {
|
||||
executionIds: executions.map((e) => e.id),
|
||||
});
|
||||
|
||||
const ownershipService = Container.get(OwnershipService);
|
||||
const workflowRunner = Container.get(WorkflowRunner);
|
||||
|
||||
Reference in New Issue
Block a user