|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
111
3
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Console\Commands;
use Carbon\Carbon;
use Illuminate\Console\Command;
use InvalidArgumentException;
use Jiminny\Jobs\AutomatedReports\RequestGenerateAskJiminnyReportJob;
use Jiminny\Jobs\AutomatedReports\SendReportMailJob;
use Jiminny\Jobs\JobDispatcherInterface;
use Jiminny\Models\Activity;
use Jiminny\Models\AutomatedReport;
use Jiminny\Models\AutomatedReportResult;
use Jiminny\Models\Team;
use Jiminny\Services\Activity\CrmOwnerResolver;
use Jiminny\Services\Kiosk\AutomatedReports\AutomatedReportsService;
/**
* Class JiminnyDebugCommand
*
* @package Jiminny\Console\Commands
*/
class JiminnyDebugCommand extends Command
{
public const string FREQUENCY_DAILY = 'daily';
public const string FREQUENCY_WEEKLY = 'weekly';
public const string FREQUENCY_MONTHLY = 'monthly';
public const string FREQUENCY_QUARTERLY = 'quarterly';
public const string FREQUENCY_ONE_OFF = 'one_off';
protected $signature = 'jiminny:debug';
public function handle(JobDispatcherInterface $jobDispatcher, AutomatedReportsService $automatedReportsService): void
{
$now = Carbon::now()->subDay(1);
$from = $now->copy()->previousWeekday()->startOfDay();
$to = $now->copy()->previousWeekday()->endOfDay();
$this->info("Now: {$now->toDateTimeString()}");
$this->info("From: {$from->toDateTimeString()}");
$this->info("To: {$to->toDateTimeString()}");
exit(1);
$report = AutomatedReport::find(71);
$job = new RequestGenerateAskJiminnyReportJob($report->getUuid());
$jobDispatcher->dispatch($job);
exit(1);
// $this->formatDate($jobDispatcher);
// $this->sendMail($jobDispatcher, $automatedReportsService);
// $this->crmService();
$this->getPayload($automatedReportsService);
exit(1);
}
private function crmService()
{
$activity = Activity::find(418141);
$team = Team::find(19);
$config = $team->getCrmConfiguration();
$crmResolver = app(CrmOwnerResolver::class, [
'team' => $team,
'integrationAdmin' => $team->getOwner(),
'providerSlug' => $config->getProviderName(),
]);
$crmService = $crmResolver->prepareCrmService();
$crmService->createTranscriptNotes($activity);
}
private function sendMail(JobDispatcherInterface $jobDispatcher, AutomatedReportsService $automatedReportsService)
{
$reportUuid = '';
// $report = $automatedReportsService->getReportResult($reportUuid);
$report = AutomatedReportResult::find(275);
$validRecipients = $automatedReportsService->getValidRecipientUsers(
$report->getReport(),
includeJiminny: true,
);
$recipient = $validRecipients[0];
$fileName = $automatedReportsService->getReportFileName($report);
$typeName = $report->getReport()->getCustomName()
?? $automatedReportsService->getReportTypeName($report);
$teamsName = $automatedReportsService->getReportTeamsName($report);
$periodName = $automatedReportsService->getReportPeriodName($report);
$s3Path = $automatedReportsService->getMediaPath($report);
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$fileName ' . PHP_EOL . print_r($fileName, true));
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$typeName ' . PHP_EOL . print_r($typeName, true));
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$teamsName ' . PHP_EOL . print_r($teamsName, true));
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$periodName ' . PHP_EOL . print_r($periodName, true));
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$s3Path ' . PHP_EOL . print_r($s3Path, true));
$jobDispatcher->dispatch(
new SendReportMailJob(
reportUuid: $report->getUuid(),
s3Path: $s3Path,
recipientEmail: $recipient['email'],
recipientName: $recipient['name'] ?? null,
fileName: $fileName,
typeName: $typeName,
teamsName: $teamsName,
periodName: $periodName,
isAskJiminny: true,
)
);
exit(1);
}
private function formatDate(JobDispatcherInterface $jobDispatcher): void
{
$customName = 'Custom report name';
// $frequency = self::FREQUENCY_DAILY;
// $frequency = self::FREQUENCY_WEEKLY;
$frequency = self::FREQUENCY_MONTHLY;
// $frequency = self::FREQUENCY_QUARTERLY;
// $frequency = self::FREQUENCY_ONE_OFF;
$period = $this->calculateFromAndToDatePeriod($frequency);
$from = $period['fromDate'];
$to = $period['toDate'];
$periodName = $this->formatReportPeriodName($frequency, $from, $to);
$filenameSuffix = null;
if ($customName) {
if ($filenameSuffix) {
$customName .= " {$filenameSuffix}";
}
$result = $this->sanitizeFileName("{$customName} - {$periodName}");
}
$this->info($result);
}
public function calculateFromAndToDatePeriod(
string $frequency,
?Carbon $fromDate = null,
?Carbon $toDate = null
): array {
if ($frequency === self::FREQUENCY_ONE_OFF) {
return [
'fromDate' => $fromDate,
'toDate' => $toDate,
];
}
$now = Carbon::now();
return match ($frequency) {
self::FREQUENCY_DAILY => [
'fromDate' => $now->copy()->subDay()->startOfDay(),
'toDate' => $now->copy()->subDay()->endOfDay(),
],
self::FREQUENCY_WEEKLY => [
'fromDate' => $now->copy()->subWeeks(1)->startOfDay(),
'toDate' => $now->copy()->subDay()->endOfDay(),
],
self::FREQUENCY_MONTHLY => [
'fromDate' => $now->copy()->subMonths(1)->startOfDay(),
'toDate' => $now->copy()->subDay()->endOfDay(),
],
self::FREQUENCY_QUARTERLY => [
'fromDate' => $now->copy()->subMonths(3)->startOfDay(),
'toDate' => $now->copy()->subDay()->endOfDay(),
],
default => throw new InvalidArgumentException("Unsupported frequency: {$frequency}"),
};
}
private function formatReportPeriodName(string $frequency, Carbon $from, Carbon $to): string
{
$fromYear = $from->format('Y');
$toYear = $to->format('Y');
$differentYears = $fromYear !== $toYear;
switch ($frequency) {
case self::FREQUENCY_DAILY:
return $from->format('j M Y');
case self::FREQUENCY_QUARTERLY:
// 'Jan-Mar 2025' or 'Nov 2024-Jan 2025' if years differ
$startMonth = $from->format('M');
$endMonth = $to->copy()->subMonth();
$endMonthName = $endMonth->format('M');
$endMonthYear = $endMonth->format('Y');
if ($differentYears) {
return "{$startMonth} {$fromYear} - {$endMonthName} {$endMonthYear}";
}
return "{$startMonth} - {$endMonthName} {$toYear}";
case self::FREQUENCY_MONTHLY:
// 'May 2025' - monthly reports are always within the same year
return $from->format('M Y');
case self::FREQUENCY_WEEKLY:
// '4 - 8 Aug 2025', '27 Oct - 3 Nov 2025', or '28 Dec 2024 - 3 Jan 2025' if years differ
$startDay = $from->format('j');
$endDay = $to->format('j');
$startMonth = $from->format('M');
$endMonth = $to->format('M');
if ($differentYears) {
return "{$startDay} {$startMonth} {$fromYear} - {$endDay} {$endMonth} {$toYear}";
}
if ($startMonth !== $endMonth) {
return "{$startDay} {$startMonth} - {$endDay} {$endMonth} {$toYear}";
}
return "{$startDay} - {$endDay} {$endMonth} {$toYear}";
case self::FREQUENCY_ONE_OFF:
// '2 May-31 May 2025' or '15 Dec 2024-15 Jan 2025' if years differ
$startDay = $from->format('j');
$startMonth = $from->format('M');
$endDay = $to->format('j');
$endMonth = $to->format('M');
// If same month and year, use a format like '2-31 May 2025'
if ($startMonth === $endMonth && ! $differentYears) {
return "{$startDay} - {$endDay} {$startMonth} {$toYear}";
}
// If different years, include both years
if ($differentYears) {
return "{$startDay} {$startMonth} {$fromYear} - {$endDay} {$endMonth} {$toYear}";
}
// Same year but different months
return "{$startDay} {$startMonth} - {$endDay} {$endMonth} {$toYear}";
default:
// Default format for unknown frequencies
return $from->format('j M Y') . ' - ' . $to->format('j M Y');
}
}
public function sanitizeFileName(string $fileName): string
{
return str_replace(['/', '\\'], '-', $fileName);
}
private function getPayload(AutomatedReportsService $automatedReportsService)
{
$reportResult = AutomatedReportResult::find(269);
$automatedReport = $reportResult->getReport();
$activityIds = [1,2,3];
$payload = $automatedReportsService->getAskJiminnyGenerateReportPayload(
automatedReport: $automatedReport,
reportResult: $reportResult,
activityIds: $activityIds,
);
\Illuminate\Support\Facades\Log::channel('custom_channel')->info('$payload ' . PHP_EOL . print_r($payload, true));
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
941
Previous Highlighted Error
Next Highlighted Error
[2026-04-22 12:56:51] local.INFO: [automated-reports] Started {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:51] local.INFO: [automated-reports] Checking conditions {"isMonday":false,"isFirstDayOfMonth":false,"currentMonth":4,"isQuarterlyMonth":true} {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:51] local.INFO: [automated-reports] Processing daily reports {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:51] local.INFO: [automated-reports] Found 1 daily reports to process {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:51] local.INFO: [automated-reports] Dispatching Generate Report job for report {"reportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","teamId":1,"frequency":"weekly","type":"ask_jiminny"} {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:51] local.INFO: [automated-reports] Completed {"correlation_id":"8e19edf8-e0ff-4fed-8dbe-262f5dc720d4","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:52] local.INFO: [AskJiminnyReport:Generate] Started {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43"} {"correlation_id":"8a73461c-4e2b-4f6d-81f0-40367c09822d","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:53] local.INFO: [AskJiminnyReport] Fetched activity IDs for saved search {"saved_search_id":1977,"user_id":143,"activity_count":0} {"correlation_id":"8a73461c-4e2b-4f6d-81f0-40367c09822d","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:53] local.INFO: [AskJiminnyReport:Generate] Fetched activity IDs {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"8a73461c-4e2b-4f6d-81f0-40367c09822d","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:53] local.INFO: [AskJiminnyReport:Generate] Not enough activities, skipped {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","activityCount":0} {"correlation_id":"8a73461c-4e2b-4f6d-81f0-40367c09822d","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:53] local.INFO: [AskJiminnyReport:Generate] Dispatched not-generated notifications {"automatedReportUuid":"4f6ca2b5-1993-48aa-99ad-b66f19f15d43","recipientsCount":1} {"correlation_id":"8a73461c-4e2b-4f6d-81f0-40367c09822d","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:56:53] local.INFO: [Send Report Not Generated Mail] Email sent {"uuid":"dcb12181-9de1-4ef0-9d45-fb4ea6fd0778","email":"[EMAIL]","recipientName":"Lukas Kovalik"} {"correlation_id":"fdf99c5e-56cc-4478-ab54-250fc09fb443","trace_id":"63846b9c-c6ed-499e-8469-25c651aaf84f"}
[2026-04-22 12:57:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"8f891f7b-2c3d-4813-a810-922d3c3ff04b","trace_id":"7ea4600f-fe5e-4041-8ef1-207cf5dfacba"}
[2026-04-22 12:57:03] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"8f891f7b-2c3d-4813-a810-922d3c3ff04b","trace_id":"7ea4600f-fe5e-4041-8ef1-207cf5dfacba"}
[2026-04-22 12:57:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"8f891f7b-2c3d-4813-a810-922d3c3ff04b","trace_id":"7ea4600f-fe5e-4041-8ef1-207cf5dfacba"}
[2026-04-22 12:57:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"23c760c9-672e-4166-a16d-e55db7824744","trace_id":"683fff63-372b-4638-9ebe-d1b0d7cd47b9"}
[2026-04-22 12:57:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"23c760c9-672e-4166-a16d-e55db7824744","trace_id":"683fff63-372b-4638-9ebe-d1b0d7cd47b9"}
[2026-04-22 12:57:06] local.NOTICE: Monitoring start {"correlation_id":"93748590-5bcc-4b5e-82a2-9cd195faadc8","trace_id":"788e496b-9a54-46ef-a822-45932aabd9ac"}
[2026-04-22 12:57:06] local.NOTICE: Monitoring end {"correlation_id":"93748590-5bcc-4b5e-82a2-9cd195faadc8","trace_id":"788e496b-9a54-46ef-a822-45932aabd9ac"}
[2026-04-22 12:57:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"f7252a17-bc62-4f94-afe0-ccfd221e69b7","trace_id":"1592110b-35f8-420a-83a2-a24fb4d4a5fa"}
[2026-04-22 12:57:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"f7252a17-bc62-4f94-afe0-ccfd221e69b7","trace_id":"1592110b-35f8-420a-83a2-a24fb4d4a5fa"}
[2026-04-22 12:57:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"ebac391b-93d6-4f58-9e1b-cbd191d7a9cb","trace_id":"1178bb4a-0ff0-4592-8041-c44780544424"}
[2026-04-22 12:57:08] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"ebac391b-93d6-4f58-9e1b-cbd191d7a9cb","trace_id":"1178bb4a-0ff0-4592-8041-c44780544424"}
[2026-04-22 12:57:08] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"ebac391b-93d6-4f58-9e1b-cbd191d7a9cb","trace_id":"1178bb4a-0ff0-4592-8041-c44780544424"}
[2026-04-22 12:57:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"ebac391b-93d6-4f58-9e1b-cbd191d7a9cb","trace_id":"1178bb4a-0ff0-4592-8041-c44780544424"}
[2026-04-22 12:57:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"bd79807d-f781-4ab2-a534-de2e8817a0c3","trace_id":"cfcd8a63-b93b-4b43-a262-f99f08865655"}
[2026-04-22 12:57:10] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"bd79807d-f781-4ab2-a534-de2e8817a0c3","trace_id":"cfcd8a63-b93b-4b43-a262-f99f08865655"}
[2026-04-22 12:57:10] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"bd79807d-f781-4ab2-a534-de2e8817a0c3","trace_id":"cfcd8a63-b93b-4b43-a262-f99f08865655"}
[2026-04-22 12:57:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"bd79807d-f781-4ab2-a534-de2e8817a0c3","trace_id":"cfcd8a63-b93b-4b43-a262-f99f08865655"}
[2026-04-22 12:57:11] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 2 inboxes and created 1 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"a4eecb2f-a606-43af-b9bd-0941ef3f15c1","trace_id":"cfcd8a63-b93b-4b43-a262-f99f08865655"}
[2026-04-22 12:58:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"2893f84a-555c-4fc8-a8c8-128c7e3ffc21","trace_id":"7ba30dd2-e0d1-4b47-b23d-2ab8a2944007"}
[2026-04-22 12:58:03] local.INFO: [ScheduleBotCommand] Number of activities to be captured: 0 {"correlation_id":"2893f84a-555c-4fc8-a8c8-128c7e3ffc21","trace_id":"7ba30dd2-e0d1-4b47-b23d-2ab8a2944007"}
[2026-04-22 12:58:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"2893f84a-555c-4fc8-a8c8-128c7e3ffc21","trace_id":"7ba30dd2-e0d1-4b47-b23d-2ab8a2944007"}
[2026-04-22 12:58:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"4f659da1-6b2c-492a-bdb8-db3789f92e86","trace_id":"5f899a25-4450-47e9-ada0-a83001bd00be"}
[2026-04-22 12:58:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"4f659da1-6b2c-492a-bdb8-db3789f92e86","trace_id":"5f899a25-4450-47e9-ada0-a83001bd00be"}
[2026-04-22 12:58:07] local.NOTICE: Monitoring start {"correlation_id":"c45f0584-bcf3-44c9-b9a2-7f6ea9ce66c0","trace_id":"ad240a18-b6d7-43d8-a9a6-d56613965203"}
[2026-04-22 12:58:07] local.NOTICE: Monitoring end {"correlation_id":"c45f0584-bcf3-44c9-b9a2-7f6ea9ce66c0","trace_id":"ad240a18-b6d7-43d8-a9a6-d56613965203"}
[2026-04-22 12:58:13] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"4739d379-46ac-41e7-a396-1365033ae798","trace_id":"bb579ad2-7e23-4512-822c-2447def47d44"}
[2026-04-22 12:58:13] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":62.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.723,"memoryPeakAfterCommandInMB":99.723} {"correlation_id":"4739d379-46ac-41e7-a396-1365033ae798","trace_id":"bb579ad2-7e23-4512-822c-2447def47d44"}
[2026-04-22 12:58:21] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":62.0,"memoryPeakBeforeCommandInMb":99.723} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: Processing email batch 98408 for inbox 212 {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1354,"provider":"google"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1354,"provider":"google"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:21] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db54231f2fc510","from":"Sentry <[EMAIL]>","to":"[EMAIL]","cc":null} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db54231f2fc510","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db54231f2fc510","message_id":"<[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53f91158f746","from":"Nikolay Yankov <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Push <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53f91158f746","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53f91158f746","message_id":"<jiminny/prophet/pull/490/before/542d2c39143ba7a97af460a1362f4baa33a2b957/after/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53a58ac8cee4","from":"\"claude[bot]\" <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Subscribed <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53a58ac8cee4","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53a58ac8cee4","message_id":"<jiminny/prophet/pull/490/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53a03c6854a8","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Subscribed <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53a03c6854a8","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53a03c6854a8","message_id":"<jiminny/prophet/pull/490/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53948b59b0c0","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Subscribed <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53948b59b0c0","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53948b59b0c0","message_id":"<jiminny/prophet/pull/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53831a6e4fc5","from":"\"sonarqubecloud[bot]\" <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Lukas Kovalik <[EMAIL]>, Review requested <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53831a6e4fc5","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53831a6e4fc5","message_id":"<jiminny/prophet/pull/489/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53521076b35f","from":"Sentry <[EMAIL]>","to":"[EMAIL]","cc":null} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53521076b35f","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53521076b35f","message_id":"<[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db532f4c2523b0","from":"\"claude[bot]\" <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Lukas Kovalik <[EMAIL]>, Review requested <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db532f4c2523b0","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db532f4c2523b0","message_id":"<jiminny/prophet/pull/489/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db532f07d5af3b","from":"Nikolay Yankov <[EMAIL]>","to":"\"jiminny/app\" <[EMAIL]>","cc":"Subscribed <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:24] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db532f07d5af3b","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db532f07d5af3b","message_id":"<jiminny/app/pull/12001/issue_event/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db532ebf72fc9e","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/app\" <[EMAIL]>","cc":"Subscribed <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db532ebf72fc9e","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db532ebf72fc9e","message_id":"<jiminny/app/pull/12001/review/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db5329f655605f","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Lukas Kovalik <[EMAIL]>, Review requested <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db5329f655605f","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db5329f655605f","message_id":"<jiminny/prophet/pull/489/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db5327670e5485","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Lukas Kovalik <[EMAIL]>, Review requested <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db5327670e5485","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db5327670e5485","message_id":"<jiminny/prophet/pull/489/issue_event/[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: Processing an email from inbox batch {"batch":98408,"inbox_id":212,"email":"[EMAIL]","email_id":"19db53231f82ecf7","from":"steliyan-g <[EMAIL]>","to":"\"jiminny/prophet\" <[EMAIL]>","cc":"Lukas Kovalik <[EMAIL]>, Push <[EMAIL]>"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1500,"provider":"salesforce"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsResolver] The sender email is blacklisted, skipping {"email":"[EMAIL]","inbox_id":212,"message_provider_id":"19db53231f82ecf7","team_id":1} {"correlation_id":"b4d5498b-7884-4951-b407-0f04e87c7643","trace_id":"64cef288-27e5-4a85-92bb-6f3ea826f4c1"}
[2026-04-22 12:58:25] local.INFO: [EmailImport\ParticipantsValidator] Email participants are less than 2 {"inbox_id":212,"message_provider_id":"19db53231f82ecf7","message_id...
|
iTerm2
|
faVsco.js – JiminnyDebugCommand.php
|
NULL
|
71742
|