File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -107,12 +107,15 @@ async function addBroadcastToOngoingSequence(sequence: AdminSequence) {
107107 `Adding ${ allUsers . length } users to ongoing sequence` ,
108108 JSON . stringify ( query ) ,
109109 ) ;
110- logInfo ( "Subscribers Added" , {
111- source : "processRules.addBroadcastToOngoingSequence" ,
112- domain_id : getDomainId ( sequence . domain ) ,
113- sequence_id : sequence . sequenceId ,
114- subscribers_count : allUsers . length ,
115- } ) ;
110+ logInfo (
111+ `${ allUsers . length } subscribers added to ${ sequence . type } ${ sequence . sequenceId } ` ,
112+ {
113+ source : "processRules.addBroadcastToOngoingSequence" ,
114+ domain_id : getDomainId ( sequence . domain ) ,
115+ sequence_id : sequence . sequenceId ,
116+ subscribers_count : allUsers . length ,
117+ } ,
118+ ) ;
116119 const ongoingSequences = allUsers . map ( ( user ) => ( {
117120 domain : sequence . domain ,
118121 sequenceId : sequence . sequenceId ,
Original file line number Diff line number Diff line change 11/// <reference types="next" />
22/// <reference types="next/image-types/global" />
3- import "./.next/types/routes.d.ts" ;
3+ import "./.next/dev/ types/routes.d.ts" ;
44
55// NOTE: This file should not be edited
66// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
You can’t perform that action at this time.
0 commit comments