mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
wip: Add logging
This commit is contained in:
parent
1caf41a34a
commit
3d63aa11a5
|
@ -92,6 +92,15 @@ export class ConcurrencyControlService {
|
||||||
this.productionQueue.on('execution-released', async (executionId) => {
|
this.productionQueue.on('execution-released', async (executionId) => {
|
||||||
this.logger.debug('Execution released', { executionId });
|
this.logger.debug('Execution released', { executionId });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.evaluationQueue.on('execution-throttled', ({ executionId }) => {
|
||||||
|
this.logger.debug('Evaluation execution throttled', { executionId });
|
||||||
|
this.eventService.emit('execution-throttled', { executionId });
|
||||||
|
});
|
||||||
|
|
||||||
|
this.evaluationQueue.on('execution-released', async (executionId) => {
|
||||||
|
this.logger.debug('Evaluation execution released', { executionId });
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue