Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
What is this?
Less
More

Memberships

Integration Mastery Cohort

37 members • Free

Trigger Mastery Cohort

8 members • Free

LWC Mastery Cohort

25 members • Free

8 contributions to Integration Mastery Cohort
1 like • 7d
@Igor Kudryk Can I have the recording for Week - 6 Class.Thank you!
1 like • 6d
Thank you!
Custom Logger Issue
Hello everyone, I am having issues with my custom logger When I add logger to trigger handler and Queable not able to detect logs. My code for Trigger Handler public without sharing class ContactTriggerHandler { public void afterInsert(List<Contact> newContacts) { CustomLogger.log( CustomLogger.LogLevel.DEBUG, 'afterInsert handler invoked. Total incoming contacts: ' + newContacts.size(), null, null, 'ContactTriggerHandler' ); List<Contact> contactsWithEmail = new List<Contact>(); for (Contact c : newContacts) { if (String.isNotBlank(c.Email)) { contactsWithEmail.add(c); } } if (!contactsWithEmail.isEmpty()) { System.enqueueJob(new StripeCustomerQueueable(contactsWithEmail)); } } } ============== Queable Class public without sharing class StripeCustomerQueueable implements Queueable, Database.AllowsCallouts { private Set<Id> contactIds; public StripeCustomerQueueable(List<Contact> contacts) { this.contactIds = new Map<Id, Contact>(contacts).keySet(); CustomLogger.log( CustomLogger.LogLevel.DEBUG, 'Queueable created. Contact IDs = ' + this.contactIds.size(), null, null, 'StripeCustomerQueueable' ); } public void execute(QueueableContext context) { CustomLogger.log( CustomLogger.LogLevel.INFO, 'StripeCustomerQueueable execution started.', null, null, 'StripeCustomerQueueable' ); List<Contact> contactsFromDb = [ SELECT Id, FirstName, LastName, Email, Phone, Description FROM Contact WHERE Id IN :contactIds ]; CustomLogger.log( CustomLogger.LogLevel.DEBUG, 'Fetched ' + contactsFromDb.size() + ' contacts from DB.', null, null, 'StripeCustomerQueueable' ); List<Contact> contactsToUpdate = new List<Contact>(); StripeCallout stripeCallout = new StripeCallout(); for (Contact c : contactsFromDb) { try { String stripeCustomerId = stripeCallout.createCustomer(c); if (String.isNotBlank(stripeCustomerId)) { contactsToUpdate.add(new Contact( Id = c.Id, Stripe_Customer_Id__c = stripeCustomerId )); CustomLogger.log(
Week #4 - Logging & Testing
Welcome to week 4 :) We will finally cover how to use the logger and create a lightweight logging framework. Solve the homework and write your solution in the comments here 👇 Good luck ;)
Week #4 - Logging & Testing
1 like • 15d
Hi @Igor Kudryk ,HomeWork - 4 - https://docs.google.com/document/d/1WMC1mO2SKAgJdGBFLwH1Nw2HpvYNGx3t2fnS8wSurmY/edit?usp=sharing
Week 5 - Auth & Named Credentials
Welcome to week 5! Write your homework here and I'll give you some feedback.
0 likes • 17d
@Oleh Faryna Thank you!
1 like • 17d
@Igor Kudryk Week - 5 - HomeWork https://docs.google.com/document/d/1BGJxVBT10CizboHbTHDoUsF49ltyhpD8WspFhIjuT5c/edit?usp=sharing
Week #3 - Callouts from Triggers
This is an exciting week! We'll build some real projects using Stripe. Because that's literally the only way to learn Integrations. But I also talked a bit more about Architecture. If you are more advanced, I really recommend that you watch this video and try to play around with this architecture. The schedule for this week is the same: 1. Alon's Weekly Session Tuesday 7 p.m. EDT 2. My Weekly Session Tuesday 7 p.m. CET No Sunday session this time. Just post any questions here in the community and we'll all help you Also, I have one ask... If you are enjoying the cohort, could you leave me a review? It takes 30 seconds, and I'll send you some cool bonuses. ​Click here to leave the review​ And of course, do the homework and post here down here in the comments 👇👇👇
0 likes • 21d
@Igor Kudryk My HomeWork 3 (Required,I will work on optional later)https://docs.google.com/document/d/1S16PY9tWTrxVogommcfGmmg6gT7z7ExB2gQOyah_rN4/edit?usp=sharing
1-8 of 8
Fahmeeda Begum
2
11points to level up
@fahmeeda-begum-4849
Salesforce Consultant in Aviation Sector.

Active 21h ago
Joined Oct 22, 2025
Dallas
Powered by