We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9edb2b commit b878abeCopy full SHA for b878abe
services/libs/data-access-layer/src/activities/ilp.ts
@@ -55,10 +55,13 @@ export async function insertActivities(
55
56
for (const row of toInsert) {
57
if (enableLogging) {
58
- logger.info(`Dispatching activity ${row.id} to ${ACTIVITIES_QUEUE_SETTINGS.name} queue`, {
59
- activityId: row.id,
60
- queue: ACTIVITIES_QUEUE_SETTINGS.name,
61
- })
+ logger.info(
+ {
+ activityId: row.id,
+ queue: ACTIVITIES_QUEUE_SETTINGS.name,
62
+ },
63
+ 'Dispatching activity to queue!',
64
+ )
65
}
66
await emitter.sendMessage(generateUUIDv4(), row, generateUUIDv4())
67
0 commit comments