Skip to content

Commit 30541da

Browse files
authored
Fix logging (calcom#21593)
1 parent 97af0af commit 30541da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app-store/salesforce/lib/graphql/SalesforceGraphQLClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class SalesforceGraphQLClient {
3737
* 3. If no account is found, then find contacts that match the email domain and find the account that the majority of contacts are connect to
3838
*/
3939
async GetAccountRecordsForRRSkip(email: string): Promise<Contact[]> {
40-
const log = logger.getSubLogger({ prefix: ["[getAccountRecordsForRRSkip]:${email}"] });
40+
const log = logger.getSubLogger({ prefix: [`[getAccountRecordsForRRSkip]:${email}`] });
4141
const emailDomain = email.split("@")[1];
4242
const websites = this.getAllPossibleAccountWebsiteFromEmailDomain(emailDomain);
4343

0 commit comments

Comments
 (0)