|
78617
|
2759
|
6
|
2026-05-27T12:47:17.334779+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779886037334_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionSummary, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uploader, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UrlGenerator, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Utility, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uuid, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Waveform, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Webhooks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Workflow, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Configuration, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Console, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Analytics, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Calendars, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Crm, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hubspot, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IntegrationApp, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Traits, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AddLayoutEntities.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutologDelayedCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BackfillOpportunityUserFromAccountCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornCommandAbstract.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornPingCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSearchCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSessionCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CheckActivityLoggableCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CleanDuplicateFieldDataCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FullSyncOpportunityCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LogActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ManageSyncStrategyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchCrmObjectsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchOpportunityActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MigrateProvider.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessHubspotObjectsSyncBatches.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PurgeDeletedOpportunitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ResetGovernorLimits.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SendNotLogged.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupActivityTypeForFollowUp.php, final class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCloseCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCopperCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCrmCommand.php, abstract class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupLayouts.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncAccount.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncContact.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncFieldMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncHubspotActiveDeals.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncHubspotObjects.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncLead.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncObjects.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncOpportunitiesMissingFieldDataCommand.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncOpportunity.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncProfileMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncTeamMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UpdateOpportunitySpecifications.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dev, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dialers, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DTOs, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Livestream, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Migrate, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlists, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Postmark, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Reports, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Team.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Teams, folder","depth":10,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
visual_change
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78613
|
NULL
|
NULL
|
NULL
|
|
78616
|
2760
|
5
|
2026-05-27T12:47:03.689493+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779886023689_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09740692,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8374335,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.85272604,"top":0.019952115,"width":0.062832445,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.31848404,"top":0.10055866,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"bounds":{"left":0.32779256,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.33909574,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3464096,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"bounds":{"left":0.13630319,"top":0.0,"width":0.31881648,"height":1.0},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"bounds":{"left":0.72706115,"top":0.07581804,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7390292,"top":0.074221864,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.7463431,"top":0.074221864,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"bounds":{"left":0.37533244,"top":0.0726257,"width":0.6246675,"height":0.9273743},"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionSummary, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uploader, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UrlGenerator, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Utility, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uuid, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Waveform, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Webhooks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Workflow, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Configuration, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Console, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Analytics, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Calendars, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Crm, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hubspot, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IntegrationApp, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Traits, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AddLayoutEntities.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutologDelayedCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BackfillOpportunityUserFromAccountCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornCommandAbstract.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornPingCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSearchCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSessionCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CheckActivityLoggableCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CleanDuplicateFieldDataCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FullSyncOpportunityCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LogActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ManageSyncStrategyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchCrmObjectsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchOpportunityActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MigrateProvider.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessHubspotObjectsSyncBatches.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PurgeDeletedOpportunitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ResetGovernorLimits.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SendNotLogged.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupActivityTypeForFollowUp.php, final class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCloseCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCopperCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCrmCommand.php, abstract class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupLayouts.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncAccount.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncContact.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncFieldMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncHubspotActiveDeals.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncHubspotObjects.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncLead.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncObjects.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncOpportunitiesMissingFieldDataCommand.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncOpportunity.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncProfileMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SyncTeamMetadata.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UpdateOpportunitySpecifications.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dev, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dialers, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DTOs, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Livestream, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Migrate, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlists, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Postmark, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Reports, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Team.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Teams, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
idle
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78610
|
NULL
|
NULL
|
NULL
|
|
78615
|
2759
|
5
|
2026-05-27T12:46:46.440033+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779886006440_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionSummary, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uploader, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UrlGenerator, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Utility, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uuid, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Waveform, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Webhooks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Workflow, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Configuration, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Console, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Analytics, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Calendars, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Crm, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hubspot, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IntegrationApp, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Traits, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AddLayoutEntities.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutologDelayedCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BackfillOpportunityUserFromAccountCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornCommandAbstract.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornPingCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSearchCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSessionCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CheckActivityLoggableCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CleanDuplicateFieldDataCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FullSyncOpportunityCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LogActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ManageSyncStrategyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchCrmObjectsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchOpportunityActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MigrateProvider.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessHubspotObjectsSyncBatches.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PurgeDeletedOpportunitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
idle
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78613
|
NULL
|
NULL
|
NULL
|
|
78614
|
2760
|
4
|
2026-05-27T12:46:33.258813+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885993258_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09740692,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8374335,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.85272604,"top":0.019952115,"width":0.062832445,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.31848404,"top":0.10055866,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"bounds":{"left":0.32779256,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.33909574,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3464096,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"bounds":{"left":0.13630319,"top":0.0,"width":0.31881648,"height":1.0},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"bounds":{"left":0.72706115,"top":0.07581804,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7390292,"top":0.074221864,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.7463431,"top":0.074221864,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"bounds":{"left":0.37533244,"top":0.0726257,"width":0.6246675,"height":0.9273743},"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionSummary, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uploader, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UrlGenerator, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Utility, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uuid, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Waveform, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Webhooks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Workflow, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Configuration, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Console, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Analytics, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Calendars, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Crm, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hubspot, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IntegrationApp, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Traits, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AddLayoutEntities.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutologDelayedCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BackfillOpportunityUserFromAccountCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornCommandAbstract.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornPingCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSearchCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSessionCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CheckActivityLoggableCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CleanDuplicateFieldDataCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FullSyncOpportunityCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LogActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ManageSyncStrategyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchCrmObjectsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchOpportunityActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MigrateProvider.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessHubspotObjectsSyncBatches.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PurgeDeletedOpportunitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ResetGovernorLimits.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SendNotLogged.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupActivityTypeForFollowUp.php, final class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCloseCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCopperCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCrmCommand.php, abstract class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupLayouts.php, class","depth":11,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
idle
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78610
|
NULL
|
NULL
|
NULL
|
|
78613
|
2759
|
4
|
2026-05-27T12:46:16.063560+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885976063_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionSummary, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uploader, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"UrlGenerator, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Utility, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Uuid, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Waveform, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Webhooks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Workflow, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Configuration, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Console, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Analytics, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Calendars, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Crm, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hubspot, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IntegrationApp, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Traits, folder","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AddLayoutEntities.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AutologDelayedCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BackfillOpportunityUserFromAccountCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornCommandAbstract.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornPingCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSearchCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BullhornSessionCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CheckActivityLoggableCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CleanDuplicateFieldDataCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FullSyncOpportunityCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LogActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ManageSyncStrategyCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchCrmObjectsCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MatchOpportunityActivitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MigrateProvider.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessHubspotObjectsSyncBatches.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PurgeDeletedOpportunitiesCommand.php","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ResetGovernorLimits.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SendNotLogged.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupActivityTypeForFollowUp.php, final class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCloseCrm.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SetupCopperCrm.php, class","depth":11,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
visual_change
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78612
|
2760
|
3
|
2026-05-27T12:46:02.792595+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885962792_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09740692,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8374335,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.85272604,"top":0.019952115,"width":0.062832445,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.31848404,"top":0.10055866,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"bounds":{"left":0.32779256,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.33909574,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3464096,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"bounds":{"left":0.13630319,"top":0.0,"width":0.31881648,"height":1.0},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"bounds":{"left":0.72706115,"top":0.07581804,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7390292,"top":0.074221864,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.7463431,"top":0.074221864,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"bounds":{"left":0.37533244,"top":0.0726257,"width":0.6246675,"height":0.9273743},"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder, folder","depth":9,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
idle
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78610
|
NULL
|
NULL
|
NULL
|
|
78611
|
2759
|
3
|
2026-05-27T12:45:42.532551+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885942532_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker, folder","depth":9,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
visual_change
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
78609
|
NULL
|
NULL
|
NULL
|
|
78610
|
2760
|
2
|
2026-05-27T12:45:32.288601+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885932288_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09740692,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8374335,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.85272604,"top":0.019952115,"width":0.062832445,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.31848404,"top":0.10055866,"width":0.00731383,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"15","depth":4,"bounds":{"left":0.32779256,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.33909574,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3464096,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"bounds":{"left":0.13630319,"top":0.0,"width":0.31881648,"height":1.0},"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"bounds":{"left":0.72706115,"top":0.07581804,"width":0.010305851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7390292,"top":0.074221864,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.7463431,"top":0.074221864,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"bounds":{"left":0.37533244,"top":0.0726257,"width":0.6246675,"height":0.9273743},"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_subenv.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php, class","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"}]...
|
3476319538423578248
|
-2502470911202910979
|
idle
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
1
15
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: Jiminny\...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78609
|
2759
|
2
|
2026-05-27T12:45:21.157430+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885921157_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
Analyzing…
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: ...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Analyzing…","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Mail;\n\nuse Carbon\\Carbon;\nuse Illuminate\\Support\\Facades\\Log;\nuse Jiminny\\Component\\Queue\\Constants;\nuse Jiminny\\Jobs\\Mailbox\\EmailTextRelay;\nuse Jiminny\\Models\\TextRelay;\nuse Google\\Service\\Gmail as GoogleGmail;\n\nclass TextRelayService\n{\n public function __construct()\n {\n $credentials = storage_path('text-relay.json');\n\n abort_unless(file_exists($credentials), 422);\n\n putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);\n }\n\n /**\n * Fetch the latest messages since the last sync.\n */\n public function sync(): array\n {\n $mailbox = config('jiminny.google_text_user');\n\n $expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';\n $expectedHost = config('jiminny.google_text_host');\n\n Log::info('[TextRelayService] Starting sync', [\n 'mailbox' => $mailbox,\n 'expected_alias' => $expectedAlias,\n 'expected_host' => $expectedHost,\n ]);\n\n $service = $this->getService($mailbox);\n\n $messageHistory = $this->getHistory($service);\n $messageIds = [];\n\n foreach ($messageHistory as $histories) {\n $messages = $histories->messagesAdded ?? [];\n\n foreach ($messages as $message) {\n $messageId = $message->message->id;\n\n if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {\n continue;\n }\n\n $relayedText = TextRelay::where('email_provider_id', $messageId)->first();\n\n if ($relayedText === null) {\n $relayedText = TextRelay::create([\n 'email_provider' => TextRelay::PROVIDER_GSUITE,\n 'email_provider_id' => $messageId,\n 'status' => TextRelay::STATUS_PROCESSING,\n ]);\n }\n\n $job = new EmailTextRelay($messageId, $relayedText);\n $job->onQueue(Constants::QUEUE_EMAILS);\n\n// dispatch($job);\n\n Log::info('[TextRelayService] Successfully dispatched message', [\n 'message_id' => $messageId,\n 'text_relay_id' => $relayedText->id,\n 'queue' => Constants::QUEUE_EMAILS,\n ]);\n\n $messageIds[] = $messageId;\n }\n }\n\n Log::info('[TextRelayService] Sync completed', [\n 'mailbox' => $mailbox,\n 'messages_processed' => count($messageIds),\n 'message_ids' => array_slice($messageIds, 0, 10),\n ]);\n\n return $messageIds;\n }\n\n public function getHistory(GoogleGmail $service): array\n {\n $pageToken = null;\n $topic = config('jiminny.google_text_relay_topic');\n $messages = [];\n $historyId = \\Cache::get($topic);\n\n // If we have no history stored, WatchMailboxEvents must not have run yet :/\n if ($historyId == false) {\n $historyId = $this->refreshHistoryPoint($topic);\n }\n\n $params = [\n 'historyTypes' => 'messageAdded',\n 'startHistoryId' => $historyId,\n ];\n\n do {\n try {\n if ($pageToken) {\n $params['pageToken'] = $pageToken;\n }\n\n $historyResponse = $service->users_history->listUsersHistory(\n config('jiminny.google_text_user'),\n $params\n );\n\n $this->setHistoryPoint($topic, (int) $historyResponse->historyId);\n\n if ($historyResponse->getHistory()) {\n $messages = array_merge($messages, $historyResponse->getHistory());\n $pageToken = $historyResponse->getNextPageToken();\n }\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to fetch Gmail history', [\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n } while ($pageToken);\n\n return $messages;\n }\n\n protected function setHistoryPoint(string $topic, int $historyPoint): Carbon\n {\n $expiresAt = now()->addDay();\n\n \\Cache::put($topic, $historyPoint, $expiresAt);\n\n return $expiresAt;\n }\n\n public function getService(string $mailbox): GoogleGmail\n {\n $client = new \\Google_Client();\n $client->useApplicationDefaultCredentials();\n $client->addScope(GoogleGmail::GMAIL_MODIFY);\n $client->setAccessType('offline');\n $client->setSubject($mailbox);\n\n return new GoogleGmail($client);\n }\n\n public function refreshHistoryPoint(string $topic): int\n {\n $mailbox = config('jiminny.google_text_user');\n $service = $this->getService($mailbox);\n\n $watchRequest = new GoogleGmail\\WatchRequest();\n $watchRequest->setLabelIds(['INBOX']);\n $watchRequest->setLabelFilterAction('include');\n $watchRequest->setTopicName($topic);\n\n $watchResponse = $service->users->watch($mailbox, $watchRequest);\n\n //$expiryTimestamp = $watchResponse->expiration / 1000;\n $historyPoint = (int) $watchResponse->historyId;\n\n $this->setHistoryPoint($topic, $historyPoint);\n\n return $historyPoint;\n }\n\n private function isForCurrentEnvironment(\n GoogleGmail $service,\n string $mailbox,\n string $messageId,\n string $expectedAlias,\n string $expectedHost\n ): bool {\n try {\n $message = $service->users_messages->get($mailbox, $messageId);\n $headers = $message->getPayload()->getHeaders();\n\n foreach ($headers as $header) {\n if ($header->name === 'X-Gm-Original-To') {\n $matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);\n\n if (! $matches) {\n // Sanitize PII by removing plus-tag content for logging\n $sanitizedOriginalTo = explode('+', $header->value)[0];\n Log::info('[TextRelayService] Refused message', [\n 'message_id' => $messageId,\n 'original_to_sanitized' => $sanitizedOriginalTo,\n ]);\n }\n\n return $matches;\n }\n }\n\n Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [\n 'message_id' => $messageId,\n ]);\n } catch (\\Exception $e) {\n Log::error('[TextRelayService] Failed to inspect message', [\n 'message_id' => $messageId,\n 'exception' => $e->getMessage(),\n ]);\n \\Sentry::captureException($e);\n }\n\n return false;\n }\n\n private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool\n {\n $parts = explode('@', $recipient, 2);\n\n if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {\n return false;\n }\n\n $localBase = explode('+', $parts[0], 2)[0];\n\n return strcasecmp($localBase, $expectedAlias) === 0;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","depth":4,"on_screen":true,"value":"[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"dcf24093-4455-46d4-9282-4a2581ed1bc6\",\"trace_id\":\"96d8032a-1905-4903-be5c-e9405c095aef\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0eb801fb-3093-4017-962c-06d801a10a73\",\"trace_id\":\"99fe297b-7155-47d5-a6a7-d2ea18672b35\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring start {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:06] local.NOTICE: Monitoring end {\"correlation_id\":\"355a8191-fdda-4e9f-b2d4-5e002515214e\",\"trace_id\":\"6743c452-a029-45bd-8e47-cfabe28496d8\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a\",\"trace_id\":\"ac1217d6-5e5d-4466-9b47-8946880ebb0b\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"833fa7f5-4850-4d9e-b43d-fe1797b647af\",\"trace_id\":\"1384fbdf-1d76-4e15-9868-ebb8da257c8a\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8\",\"trace_id\":\"1d750b03-aa19-4619-a227-fcc03a45b770\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"90f00b85-f027-43e2-b9e0-946861cdfb51\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24180576,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.58,\"average_seconds_per_request\":0.58} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":593.42} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":646.6,\"usage\":24268616,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"79fca9e9-5a21-452c-9c00-6c8b150a9e0f\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24246528,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":23.62,\"usage\":24234488,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24195248,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":10.72,\"usage\":24257312,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3483c3db-4a61-48ce-98e6-0161516e75e2\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:notify-not-logged\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"200ac210-21c8-4677-b562-a0dd4a8bb7aa\",\"trace_id\":\"8b995657-ab68-439c-86b1-ba462fca3f4d\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24214824,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":49.63,\"usage\":24230936,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"460dca4b-02d5-43c8-84dc-ac61ff551b40\",\"trace_id\":\"84bc4955-185c-4e9f-a049-1469983354dc\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {\"host\":\"docker_lamp_1\",\"events\":2} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cfff3469-314f-4fc5-b975-90204441b4a5\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":59} {\"correlation_id\":\"0de516de-9f67-4aac-a228-5bce0b9cae18\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {\"inbox_id\":212} {\"correlation_id\":\"dcf90e7e-f15f-4d68-96d5-4637d561bc8a\",\"trace_id\":\"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":56,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":168.0,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"02c7da60-8ba0-415c-8f55-8d8337c5e442\",\"trace_id\":\"adc13529-11a5-47f8-9bdf-1c940564c362\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f7111cf8-923f-4249-a7e6-22bc9c6da875\",\"trace_id\":\"0277779e-61f4-46a9-8c06-68a1e14548a9\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"1d77aff1-8cd7-4126-b383-a9d6f1036b9b\",\"trace_id\":\"3e459ee7-82d6-4cff-bf3c-725c78c51fe4\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring start {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:07] local.NOTICE: Monitoring end {\"correlation_id\":\"6f19b4b6-bdc4-4373-bb83-8026c5ca9541\",\"trace_id\":\"ce167b98-a0e2-4042-81df-c199e63a7178\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b1f5b0ea-8979-458f-85fa-9ec8f107f890\",\"trace_id\":\"3d6c9714-44f6-4182-9ef6-20b0b591ec16\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6de9ec5b-fef1-46dc-af6f-6efd7159b14c\",\"trace_id\":\"44823d7e-2f30-4f2b-b473-57b40b8e3a32\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"8ca29b95-53d5-49b3-974a-bd619436381c\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:13] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"1d77b07e-080e-4829-a50a-4201e4336a52\",\"trace_id\":\"559e80b1-5084-40ec-a006-c4079fb82e1a\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:37:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"35d4b43f-f881-48b1-b35d-a7a6279d383e\",\"trace_id\":\"5b39768e-c490-40c1-a320-7d6c0f731049\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0a7f0331-2b33-4388-b36d-b10596474999\",\"trace_id\":\"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"05985339-0f15-4991-8d86-a314a08b894e\",\"trace_id\":\"e687a910-c51a-4aac-af86-d647fc6f304a\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring start {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:06] local.NOTICE: Monitoring end {\"correlation_id\":\"33239855-c5df-4bb0-a469-b1654a53d484\",\"trace_id\":\"81e70b33-817a-41de-a80a-41bc709c8731\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ceda4686-61f9-4efd-9dac-425274190b6c\",\"trace_id\":\"2a7a6c33-b0c4-4299-8fa7-31759e937e7d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4b4bcbc0-01ae-4255-9bf6-ad0227189cae\",\"trace_id\":\"4e72b4d7-c681-4248-8937-3c67e3fbd58d\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"9aff710c-8d60-4841-a3b2-4032ca3413c6\",\"trace_id\":\"4413a568-2935-486c-91f9-d031a51c69cc\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:38:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"764a1ac9-502b-4a6d-ae0b-3820cc718427\",\"trace_id\":\"f7829e9d-3a75-4e13-867d-1160e876cf07\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"113c64b0-f004-4000-94a7-78ce58c626b2\",\"trace_id\":\"728eddb5-54b0-487a-91a7-8b0032c5bb78\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"23f10df5-34f4-4e04-85f1-e82db52af5e6\",\"trace_id\":\"db62bd45-dd20-422c-82cb-7acb7ddb2e06\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring start {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:06] local.NOTICE: Monitoring end {\"correlation_id\":\"2acea05b-8214-439e-a744-d02f85685068\",\"trace_id\":\"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"707d1d04-2d6f-4db8-89b4-e16fe9a83709\",\"trace_id\":\"6f7049ea-fa50-46e2-8bf5-ed0e5effce45\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"07eef107-678e-444c-b7a5-0cd0737b4fbf\",\"trace_id\":\"a3272e8e-c5ea-42cb-b073-3debce3e06fe\"}\n[2026-05-27 12:39:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1496,\"provider\":\"aircall\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {\"team_id\":1,\"reason\":\"{\\\"message\\\":\\\"Forbidden\\\"}\"} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:aircall:check-and-renew\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b001759e-46c2-4b1b-8752-92cd1d2aad3b\",\"trace_id\":\"ee540c60-c191-444e-acfa-a9d7ae0ab9b0\"}\n[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {\"options\":{\"from\":null,\"to\":null,\"help\":false,\"silent\":false,\"quiet\":false,\"verbose\":false,\"version\":false,\"ansi\":null,\"no-interaction\":false,\"env\":null}} {\"correlation_id\":\"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63\",\"trace_id\":\"e3428bc3-d52e-4a94-8d33-5c246d0bafd6\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c8027067-1a7b-4920-ab15-acac10f5730c\",\"trace_id\":\"ec37bb49-9131-40f3-8033-23fbd7a032ad\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"28d27090-0dec-46a4-8a79-2c6db1e89d26\",\"trace_id\":\"6f6d7e96-ec35-4946-ac91-6496125a5291\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring start {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:06] local.NOTICE: Monitoring end {\"correlation_id\":\"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d\",\"trace_id\":\"e8335595-dc87-48b1-a209-abbbe3e404fd\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0ded3374-9752-49d6-9446-af7f83b45a71\",\"trace_id\":\"1a8bb850-013c-4a60-a56f-ffda95442111\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d587c208-942b-4199-bfb0-35831bdc80d5\",\"trace_id\":\"93cc7bc8-613a-4737-8ed1-06d35111a6f2\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"588009b6-a95e-4566-9da5-f103a68ae30e\",\"trace_id\":\"14af6725-02bf-4a28-b860-aa71fea555bc\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"activity:purge-stale\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ba37789e-2370-41a3-8f54-16bcd1db3b8f\",\"trace_id\":\"aa2efe6d-9fe6-460b-85ae-1d267b9579ca\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Starting sync {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"expected_alias\":\"catch-all\",\"expected_host\":\"txt.staging.jiminny.com\"} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: [TextRelayService] Sync completed {\"mailbox\":\"catch-all@txt.staging.jiminny.com\",\"messages_processed\":0,\"message_ids\":[]} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:text-relay:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"57a796bc-8e15-4be9-899a-9bd703e6f5c4\",\"trace_id\":\"33a6cea2-d2de-4876-9401-1027c3e18fd2\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Running pre-meeting notification command {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-notification\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4c4c19e4-2976-4f45-847d-833100ba05c1\",\"trace_id\":\"9efcfc6d-83ef-4274-90f6-0893a53f4fe5\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Running conference:monitor:start command for activities in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: [conference:monitor:start] No activities found in (2026-05-27 12:30:00, 2026-05-27 12:35:00] {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:16] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:start\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d41b4d97-536b-46c8-b13b-793c861b8a16\",\"trace_id\":\"576e4378-6725-40af-af35-6f2a5118e0f6\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesEnded {\"from\":\"12:35\",\"to\":\"12:40\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: conference:monitor:end:Jiminny\\Console\\Commands\\Activities\\MonitorMeetingEndCommand::logActivitiesWithUnfinishedSession {\"from\":\"02:30\",\"to\":\"02:35\"} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:17] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:end\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"18b2d945-db41-490a-8ced-e2df01e4e9d4\",\"trace_id\":\"7894269d-2bee-4d88-a8aa-14718da32b58\"}\n[2026-05-27 12:40:19] local.NOTICE: Repairing HubSpot tokens start {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":59,\"provider\":\"hubspot\",\"refreshToken\":\"97b78f6e2cc49965c00c2492b602b02708b1392551e6b3f113fbaa48992af90b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.ERROR: Failed to refresh HubSpot token {\"account_id\":59,\"updated_at\":\"2025-10-03 09:32:05\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: Trying to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":306,\"provider\":\"hubspot\",\"refreshToken\":\"6fa6aa8cc641d131231acc3470f5c03cb3b07b2e580fb18f8acb3b1dbb72549b\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":306,\"updated_at\":\"2023-11-27 09:30:03\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: Trying to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1372,\"provider\":\"hubspot\",\"refreshToken\":\"9aa73948c761da29dce46c177cf9aee1fde483a44169ca38723f9f0597d7a8c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.ERROR: Failed to refresh HubSpot token {\"account_id\":1372,\"updated_at\":\"2025-10-02 14:47:06\",\"reason\":\"missing or invalid refresh token\",\"previous\":\"\"} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:20] local.NOTICE: Repairing HubSpot tokens end {\"total\":3,\"fixed\":0,\"failed\":3} {\"correlation_id\":\"9aa5f957-7abb-4410-842d-877e3397cbd1\",\"trace_id\":\"2b14af28-93c7-4b91-87fa-e387e8b2f8a5\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"jiminny:transcription:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b4c3a371-38b2-4623-ae4e-414913d723b0\",\"trace_id\":\"dfe78599-b05f-4de0-a1a3-5ecea08f7962\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Command] Starting polling service {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Service starting {\"memory_limit\":\"256M\",\"max_execution_time\":\"0\",\"initial_memory_mb\":62.0} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Acquired polling lock {\"expires_at\":\"2026-05-27T12:42:22.914391Z\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:pre-meeting-reminder\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"29fe7a5d-04c0-4618-a38c-acdcf1323d4b\",\"trace_id\":\"a7680682-ab33-409d-adc8-06401aaa9f32\"}\n[2026-05-27 12:40:23] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:25] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:reset-governor\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"c258ac08-319e-4931-ab30-0c8d942335e6\",\"trace_id\":\"d2c818ab-1e72-469f-a915-96b2fa2c0beb\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:26] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:bullhorn:ping\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"20f61214-d28a-40da-a9dc-b74548047166\",\"trace_id\":\"6f549906-eaf0-40f9-a343-0eb858739e06\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:28] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:33] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:40:48] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"acba19c7-1bc3-40ef-98b2-85a2035226db\",\"trace_id\":\"afe62bb7-7231-446e-ae64-3b21fb401d60\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7c19c38c-69bf-4f5a-8626-a2a5c10224b0\",\"trace_id\":\"abde10f3-04bc-4081-9793-cc7eb58acce5\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring start {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:06] local.NOTICE: Monitoring end {\"correlation_id\":\"a623051b-9914-4f21-8a54-5e09559d4b76\",\"trace_id\":\"3634f950-eda4-46a6-ab50-4d7462e2d042\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"7b61940d-288f-4bd2-a9ac-ae496eebbdb2\",\"trace_id\":\"6d624f5a-a411-404e-8856-1ea7aa57cfac\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"64cec3b6-f444-4f75-95a1-436c452b65b2\",\"trace_id\":\"afeeebf5-c864-4320-8023-97705a664888\"}\n[2026-05-27 12:41:11] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-hubspot-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"f2594895-b121-404b-b64d-a048786e75d1\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"usage\":24192296,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":148,\"team_id\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {\"team\":2} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [Hubspot] Pagination completed {\"team_id\":2,\"endpoint\":\"https://api.hubapi.com/crm/v3/objects/deals/search\",\"total_requests\":1,\"total_records_fetched\":0,\"total_elapsed_seconds\":0.25,\"average_seconds_per_request\":0.25} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [HubSpot] Synced opportunities {\"team\":2,\"strategies\":\"lastModified\",\"sync_count\":0,\"total\":0,\"last_synced_id\":null,\"duration_ms\":250.95} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4\",\"provider\":\"hubspot\",\"status\":\"completed\",\"duration_ms\":292.67,\"usage\":24279960,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"95cc9280-de41-41e6-8bac-4872a42c9881\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"usage\":24257872,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b\",\"account\":null} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":130,\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":42} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2d49a54-b645-4637-a7ae-a86cfce6e8e4\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":12.97,\"usage\":24245832,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"fc422bb6-dfed-4fdf-a288-ee8c9c4515f5\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"usage\":24206592,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"33e34a7a-1c02-4f04-87ac-22c3a385e6e3\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":306,\"sociable_id\":109,\"provider_user_id\":\"11348452\",\"expires\":1701077403,\"refresh_token_expires\":null,\"provider\":\"hubspot\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2020-09-01 16:59:04\",\"updated_at\":\"2023-11-27 09:30:03\"}}} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":109,\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":29} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:12] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"b2b115eb-93ce-4d1b-929c-173757df8fba\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.88,\"usage\":24268656,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"6f82b6ab-c5bf-47ff-9624-698ef1fdb38a\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Starting sync {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"usage\":24226168,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.WARNING: [HubSpot] Account not connected for user {\"userId\":\"71e3aac5-fb66-47c5-a236-2d051ae3e319\",\"account\":null} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"hubspot\",\"crm_owner\":256,\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"hubspot\",\"team_id\":49} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:13] local.INFO: [SyncHubspotObjects] Sync finished {\"team\":\"c6b9d6b0-b48d-4832-a68c-a57d60651888\",\"provider\":\"hubspot\",\"status\":\"disconnected\",\"duration_ms\":5.03,\"usage\":24242280,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Social account for HubSpot cannot be found. Please login to Jiminny to connect.\"} {\"correlation_id\":\"bddd2eb0-666b-4bf7-880b-a59b7be8e03e\",\"trace_id\":\"8293b5d1-8636-454f-b5d7-86e0055ee1f4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal Polling] Getting offset from database {\"offset\":\"\",\"jiminny_team_id\":1} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:18] local.INFO: [HubSpot Journal API] Fetching latest journal entry {\"url\":\"https://api.hubapi.com/webhooks/v4/journal/latest\"} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] No data {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {\"empty_results\":5,\"max_empty_results\":5} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Service ending {\"runtime_seconds\":57,\"total_cycles\":5,\"files_downloaded\":0,\"empty_files\":0,\"other_portal_skipped\":0,\"total_events\":0,\"events_per_file\":0,\"avg_api_ms\":186.9,\"avg_download_ms\":0.0,\"avg_transform_ms\":0.0,\"avg_process_ms\":0.0,\"peak_memory_mb\":99.88} {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:41:19] local.INFO: [HubSpot Journal Polling] Released polling lock {\"correlation_id\":\"c8dc7b6c-7912-49db-bc60-9621d792385c\",\"trace_id\":\"a2cbb938-dbdd-4d4c-a51d-7dab2774fae4\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"355830cb-cfc7-4423-b9b2-b6c6bfb6d5d5\",\"trace_id\":\"865fea08-7ee3-4430-956a-7575498a8eae\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"d4d40e6a-e1fe-4e18-a293-b52558c1e370\",\"trace_id\":\"e972e469-8bf6-45bd-870b-6b39c0008b34\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring start {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:05] local.NOTICE: Monitoring end {\"correlation_id\":\"4c9b92e1-47d8-4b8f-b86e-b5213797cb2c\",\"trace_id\":\"23a7e5f2-50b0-462c-a82a-65e27b13aef7\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:07] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2d65c81f-88d4-466c-8232-5098e37419ef\",\"trace_id\":\"3316064e-43f1-40da-a0f5-8ca85ea9d52e\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:09] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"700bc42c-b0c5-4576-986e-207819576a74\",\"trace_id\":\"a70d145a-d23d-41ff-a0f2-bfc66daa64fc\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:40:00, 2026-05-27 12:42:00] {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"b7ebdd7b-f454-4310-8d2e-190804c6d0f1\",\"trace_id\":\"ec595c19-7096-463d-877a-10e875528bea\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] STARTING batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: [EmailSchedule] FINISHED batch create {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:14] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:create\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":60.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"ee426296-e02a-451b-b686-1344c3989dee\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:42:17] local.INFO: [Jiminny\\Jobs\\Mailbox\\CreateBatches] processed 1 inboxes and created 0 batches {\"userId\":null,\"batchSize\":30,\"maxBatches\":1000} {\"correlation_id\":\"08766bc3-7565-414c-a117-fd51750d96e2\",\"trace_id\":\"aa1a5500-0768-47d6-942e-d631962efb48\"}\n[2026-05-27 12:43:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cc0e32f9-56b7-4058-a3d8-f83bcc9277c4\",\"trace_id\":\"86357818-b92e-4b62-a7ce-b9f5660d986d\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:05] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"e6627e49-159f-4558-9955-3fcb931b3f15\",\"trace_id\":\"b405f5d2-3e30-460a-8525-86e9b9d1b6a2\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring start {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:07] local.NOTICE: Monitoring end {\"correlation_id\":\"34d8d4f1-84e5-4a65-bd96-489042db3b03\",\"trace_id\":\"37ec3563-e0df-4083-8d12-6a0a368beb09\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"4fad0417-e0b5-42e9-97ab-01b8b25ca360\",\"trace_id\":\"e8670f2e-43b7-4eb1-b0fd-7fa44ab0e2b0\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:10] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"002a47de-1237-4c3d-8bd4-b32eda175fe3\",\"trace_id\":\"7c03e1a7-3e5f-400e-87fc-87ade522006a\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:12] local.NOTICE: Calendar sync start {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:retry-failed\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"cf1f72b0-dfce-4eb6-bd32-947d400255ce\",\"trace_id\":\"79c143f8-70d5-4347-95d1-5182d2629a8e\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1393,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:13] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1393,\"provider\":\"google\",\"refreshToken\":\"5aa7e2d96b53201cd16fca5d2e4ef3ad03320971fc064781d18aee3ae7b99fbf\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1393,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1387,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1387,\"provider\":\"google\",\"refreshToken\":\"8157ac6de94842937194009e9c50e459253600f799dacf6a40755ffdbeb5bba6\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1387,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1348,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1348,\"provider\":\"google\",\"refreshToken\":\"9e7d13d3032d0cb1b79d8e95aef01383e8e91eb52ff8ee960c8a0b6b95cd8c73\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1348,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1361,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:14] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1361,\"provider\":\"google\",\"refreshToken\":\"6c843da199c2b9907445329304fcc4ec5057a4ee748d8299641764395c08e1fd\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1361,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1310,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1310,\"provider\":\"google\",\"refreshToken\":\"e34818922c2830a660813a63f6169a4a9a992ae2cccd7dc8dd7796cfdb470ef1\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1310,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1333,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1333,\"provider\":\"google\",\"refreshToken\":\"6c902986546d8e8da1dc539b046cdc1d458f519acc972e5b5f1d6a1a295165e0\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1333,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1368,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1368,\"provider\":\"google\",\"refreshToken\":\"d2f128898ff8543bd16b69cfae37896ab85119b0f5ed2b431d739593bb600333\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1368,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1365,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:15] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1365,\"provider\":\"google\",\"refreshToken\":\"7676e4a9afcd082b413248ab5ec6e487021fec6a9bdf315860a59cefad9caad8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1365,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1364,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1364,\"provider\":\"google\",\"refreshToken\":\"dd5882ebce76e645292ce33ae74238abbb77c0a4ecc6a2bfe723cad82e72ba8e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"responseBody\":{\"error\":\"unauthorized_client\",\"error_description\":\"Unauthorized\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1364,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1370,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1370,\"provider\":\"office\",\"refreshToken\":\"b7ee8035306d0043cea6e00e7c4fe14f745e44074a1194db62a31cdf8b70af3e\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 184b9d82-cd97-4082-a4b6-b64648395000 Correlation ID: f65d62a7-fc80-43dc-9e81-52c9ea48324b Timestamp: 2026-05-27 12:43:16Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:16Z\\\",\\\"trace_id\\\":\\\"184b9d82-cd97-4082-a4b6-b64648395000\\\",\\\"correlation_id\\\":\\\"f65d62a7-fc80-43dc-9e81-52c9ea48324b\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1370,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1202,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:16] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1202,\"provider\":\"office\",\"refreshToken\":\"b458799ccc29b21a6e2eb5260fdb63e49ccba21bf942a3973fb63799bd7f0afe\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: c16a7d7e-c74d-4764-88d5-b83e76cd1900 Correlation ID: 2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7 Timestamp: 2026-05-27 12:43:17Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:17Z\\\",\\\"trace_id\\\":\\\"c16a7d7e-c74d-4764-88d5-b83e76cd1900\\\",\\\"correlation_id\\\":\\\"2f0a5c3a-a92c-4bbe-853f-a064b7b32ca7\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1202,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1502,\"provider\":\"google\",\"refreshToken\":\"d417c92ebaa137295a04675f715d0511ae8acac9d779b102eac50d6300116d3e\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:17] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1502,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: Calendar sync job dispatched {\"calendar_id\":501} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1300,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1300,\"provider\":\"google\",\"refreshToken\":\"4b811db0725fd9602a95943519a7da935e2a5065da7d9ebfcb170752e3e1ddb8\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Account has been deleted\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1300,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1409,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1409,\"provider\":\"google\",\"refreshToken\":\"e2a3f2d06894894eed1ee87d9db1ace77d4d42ee6e1288a8940ad2c10333b0c4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1409,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1352,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1352,\"provider\":\"google\",\"refreshToken\":\"dd4b16b00fdc1216da6b717c02338c073636e29162826b2de6db3f064fc029eb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1352,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1296,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:18] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1296,\"provider\":\"office\",\"refreshToken\":\"011ae723c9d800c674e0b4be76f49fc046dac7d501b66c59ef0d9549cfa56ae5\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 61e58cfe-dca9-4135-b6e1-2b24cb921d00 Correlation ID: 9e79bac4-7a90-4dae-a8df-6e2fa04da894 Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"61e58cfe-dca9-4135-b6e1-2b24cb921d00\\\",\\\"correlation_id\\\":\\\"9e79bac4-7a90-4dae-a8df-6e2fa04da894\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1296,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":391,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":391,\"provider\":\"office\",\"refreshToken\":\"00045eebae0f39b34887c6d53f92ae78064f7145e1f4b67754aebd03cfb2d881\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [Calendar] Processing sync {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"from\":null,\"to\":null,\"delta\":\"CIiFh8TP44kDEIiFh8TP44kDGAUgkZvkzgIokZvkzgI=\",\"last_sync\":\"2024-12-09 07:12:53\",\"dateMode\":\"daily\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1502,\"provider\":\"google\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 22a542e3-39a6-47fb-9702-68588cee1300 Correlation ID: d8df1d19-5473-4646-85dd-8114a09fdf6d Timestamp: 2026-05-27 12:43:19Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:19Z\\\",\\\"trace_id\\\":\\\"22a542e3-39a6-47fb-9702-68588cee1300\\\",\\\"correlation_id\\\":\\\"d8df1d19-5473-4646-85dd-8114a09fdf6d\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":391,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1271,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:19] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1271,\"provider\":\"office\",\"refreshToken\":\"118cde2c06993147b07ccaec4cbcd5026a819dea6c71081166a492933e392afb\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"responseBody\":\"{\\\"error\\\":\\\"invalid_client\\\",\\\"error_description\\\":\\\"AADSTS7000215: Invalid client secret provided. Ensure the secret being sent in the request is the client secret value, not the client secret ID, for a secret added to app 'bbcbb2ef-6200-4fae-82bd-d81f5dd738da'. Trace ID: 84f9dd95-b22c-4475-afbe-70f9c3281d00 Correlation ID: a3b1dfb6-bb6b-438c-93d8-52bf36d788a4 Timestamp: 2026-05-27 12:43:20Z\\\",\\\"error_codes\\\":[7000215],\\\"timestamp\\\":\\\"2026-05-27 12:43:20Z\\\",\\\"trace_id\\\":\\\"84f9dd95-b22c-4475-afbe-70f9c3281d00\\\",\\\"correlation_id\\\":\\\"a3b1dfb6-bb6b-438c-93d8-52bf36d788a4\\\",\\\"error_uri\\\":\\\"https://login.microsoftonline.com/error?code=7000215\\\"}\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1271,\"provider\":\"office\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1351,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1351,\"provider\":\"google\",\"refreshToken\":\"4271d15b9e60a606439caddc68337f783e472c85b03dacff14d1b6dfded9051c\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"a33076c1-8d97-431a-99f0-85c9524e118b\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"4db2c90b-4500-4403-95d6-6d8ea030cc2e\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1351,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1366,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1366,\"provider\":\"google\",\"refreshToken\":\"ae21385059b2eebfd43f68aecd56eccd702a1aabb6598f1f7ab594ed8af491b4\",\"state\":\"full-refresh\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"responseBody\":{\"error\":\"invalid_grant\",\"error_description\":\"Bad Request\"}} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.ERROR: [SocialAccountService] Failed to refresh token {\"socialAccountId\":1366,\"provider\":\"google\",\"reason\":\"Flow refresh required.\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1115,\"provider\":\"google\",\"refreshToken\":\"356b60f12e262a5e24d3042386ef47d6a6cfe3074c242f4426edcec8646192b1\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:20] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1115,\"provider\":\"google\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: Calendar sync job dispatched {\"calendar_id\":378} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Token needs refreshing {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:21] local.INFO: [SocialAccountService] Refreshing token from provider {\"socialAccountId\":1421,\"provider\":\"office\",\"refreshToken\":\"0c91f27cf3f5ed7e25455bb36e45bc9b77fb62d352f2be79bb419204cc7cb859\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Saving model {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Access token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"from\":null,\"to\":null,\"delta\":\"CJ_x49O3jpIDEJ_x49O3jpIDGAUgw67KlwMow67KlwM=\",\"last_sync\":\"2026-01-19 07:48:40\",\"dateMode\":\"daily\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] CRM disconnected for user so events will not be matched {\"provider\":\"pipedrive\",\"user_id\":241,\"message\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1115,\"provider\":\"google\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountObserver] Refresh token was modified, encrypting {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token refreshed {\"socialAccountId\":1421,\"provider\":\"office\",\"state\":\"connected\"} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Calendar sync job dispatched {\"calendar_id\":504} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.NOTICE: Calendar sync end {\"retrieved_calendars\":31,\"processed_calendars\":3} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"calendar:sync\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"6f6be94a-e73d-456e-b374-51a7bf2f3890\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Google Calendar] Failed to watch channel for calendar {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.WARNING: [Calendar] Sync failed {\"calendarId\":\"2676cb6d-f86c-427e-bf78-591e388e3c1e\",\"code\":400,\"reason\":\"{\n \\\"error\\\": {\n \\\"errors\\\": [\n {\n \\\"domain\\\": \\\"global\\\",\n \\\"reason\\\": \\\"push.webhookUrlNotHttps\\\",\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n ],\n \\\"code\\\": 400,\n \\\"message\\\": \\\"WebHook callback must be HTTPS: /webhook/calendar/google?resourceType=event\\\"\n }\n}\"} {\"correlation_id\":\"bd6c7cec-61eb-4757-adea-06be6fc0dee0\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1421,\"provider\":\"office\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [Calendar] Processing sync {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\",\"from\":null,\"to\":null,\"delta\":\"R0usmcdvmMuZCBYV0hguCLbinXNUdndbb-ECUsN4LJrJG3mny6y_meJS8MAAHR5ZMrcUO3h48ocZNNnE7oP5gw1vlpVCP8G7vwKiJvMr__pTveeFSIgIX26vx0F0cDUmNI0_JTiUjIa8SS87NYFu0VC-K9UUoS_3YAmb3QbL1FzAfSGSNtasPG9UoNDP2sTOfaa0y-bXW7hGxDeemyMi5Q.mq5epx6DKMR2Kr4O2JnKftifGVfsgrCAgaghMEclE4U\",\"last_sync\":\"2026-05-27 06:58:28\",\"dateMode\":\"daily\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1499,\"provider\":\"hubspot\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"hubspot\",\"crm_owner\":89,\"team_id\":2} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:43:22] local.INFO: [MS Office Calendar] Skipping delta sync for daily mode {\"calendarId\":\"9e8b1a2c-1a8f-42bd-b161-810fc0baf540\"} {\"correlation_id\":\"57d2edc2-b49b-45a4-8619-f345ed1f356d\",\"trace_id\":\"5c9c8741-3f20-4f4c-a243-9728ab650a89\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {\"count\":0} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:03] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"meeting-bot:schedule-bot\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"04767fb2-a3f7-4e26-82e4-d91fd95b2e78\",\"trace_id\":\"cfe83c36-9c8d-4b6c-9e96-73317193ae8e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:04] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"dialers:monitor-activities\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"0f5ca72c-6542-43b2-8691-92ad70ed8d1a\",\"trace_id\":\"6ae12550-6ae4-4717-b9ac-2c76df35b42e\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring start {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:07] local.NOTICE: Monitoring end {\"correlation_id\":\"81c87c76-a7dc-45e5-9849-e5a7666a79a8\",\"trace_id\":\"562ccc1c-ec63-4248-a773-2ca0e6217178\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:08] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:skip-lists:refresh\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"5aca5b99-de1a-459d-a0ad-af911dc769e4\",\"trace_id\":\"69818c84-dacd-4446-80f6-92edfa32dfa8\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] STARTING batch process {\"host\":\"docker_lamp_1\"} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: [EmailSchedule] FINISHED batch process {\"host\":\"docker_lamp_1\",\"processed\":0} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:12] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"mailbox:batch:process\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"3c057471-7226-4d3a-a570-11ac360363ce\",\"trace_id\":\"935b082e-f11b-494c-95a9-8f0260bcfef9\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:42:00, 2026-05-27 12:44:00] {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:13] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"conference:monitor:count\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"13635514-f5ca-4135-afbd-034784f6e681\",\"trace_id\":\"2236a097-b195-4c92-955c-4b3e84054bd6\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage before starting command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryPeakBeforeCommandInMb\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: Jiminny\\Console\\Commands\\Command::run Memory usage for command {\"command\":\"crm:sync-objects\",\"memoryBeforeCommandInMb\":60.0,\"memoryAfterCommandInMB\":62.0,\"memoryPeakBeforeCommandInMb\":99.883,\"memoryPeakAfterCommandInMB\":99.883} {\"correlation_id\":\"2f12bc55-ea68-4688-8fca-fd76ac3eb8d9\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"usage\":24203880,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"641f1acb-16b8-42d1-8726-df52979dad0e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1500,\"sociable_id\":143,\"provider_user_id\":\"0052g000003frelAAA\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2026-02-06 08:39:03\",\"updated_at\":\"2026-05-14 09:46:30\"}}} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":143,\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":1} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:15] local.INFO: [SyncObjects] Sync finished {\"team\":\"6473c918-d8db-4ded-a52b-4febfd7b7c02\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":17.78,\"usage\":24279456,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"34242f5a-195f-4d5c-a59d-546319387a86\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"usage\":24235288,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":19} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:17] local.INFO: [SyncObjects] Sync finished {\"team\":\"51467630-d89d-480b-be20-933e64a042f7\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":27.34,\"usage\":24308776,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"e6bc3fa7-d2cc-43f1-91fe-f9594b0fff25\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"usage\":24265552,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:19] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"copper\",\"crm_owner\":333,\"team_id\":27} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.NOTICE: Leads unavailable {\"method\":\"POST\",\"endpoint\":\"leads/search\",\"options\":[],\"body\":{\"minimum_modified_date\":1779864257,\"sort_by\":\"date_modified\",\"page_number\":1},\"status_code\":403,\"error\":\"{\\\"success\\\":false,\\\"status\\\":403,\\\"message\\\":\\\"Feature not enabled\\\"}\"} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:20] local.INFO: [SyncObjects] Sync finished {\"team\":\"396ed57c-e3c4-49be-8290-37c32955f7c7\",\"provider\":\"copper\",\"status\":\"completed\",\"duration_ms\":1482.38,\"usage\":24411832,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"268e862a-8ea5-4035-bb6f-2d0b5b669161\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"usage\":24459360,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.WARNING: [Pipedrive] Account not connected for user {\"userId\":\"e6538737-e7b4-455f-a37a-3e79b665a220\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1116,\"sociable_id\":241,\"provider_user_id\":\"19555731\",\"expires\":1779091997,\"refresh_token_expires\":null,\"provider\":\"pipedrive\",\"state\":\"full-refresh\",\"auth_scope\":\"base,deals:full,activities:full,contacts:full,search:read\",\"retry_after\":null,\"created_at\":\"2023-09-08 09:44:29\",\"updated_at\":\"2026-05-18 08:13:32\"}}} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"pipedrive\",\"crm_owner\":241,\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"pipedrive\",\"team_id\":28} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:21] local.INFO: [SyncObjects] Sync finished {\"team\":\"fda3cbdf-1117-4ba5-86f8-775f548b3a28\",\"provider\":\"pipedrive\",\"status\":\"disconnected\",\"duration_ms\":10.87,\"usage\":24502536,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Pipedrive account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"3abbd2ad-21ad-4c23-9de9-4d5cdae4f035\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"usage\":24459488,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Fetching token {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [SocialAccountService] Token retrieved {\"socialAccountId\":1219,\"provider\":\"close\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [EncryptedTokenManager] Generating access token. {\"mode\":\"legacy\"} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:23] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"close\",\"crm_owner\":257,\"team_id\":31} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"3ff5a02a-86fb-4357-b1d6-a04e26c38602\",\"provider\":\"close\",\"status\":\"completed\",\"duration_ms\":1233.08,\"usage\":24552536,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"e89fbd7c-d46c-4c1f-a2e7-a7379e43d4b8\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"usage\":24531160,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.WARNING: [Bullhorn] Account not connected for user {\"userId\":\"941d12a6-e84f-4c3a-a4c8-2ef433792095\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":348,\"sociable_id\":121,\"provider_user_id\":null,\"expires\":1733727508,\"refresh_token_expires\":null,\"provider\":\"bullhorn\",\"state\":\"full-refresh\",\"auth_scope\":null,\"retry_after\":null,\"created_at\":\"2021-04-06 11:07:26\",\"updated_at\":\"2024-12-09 15:10:40\"}}} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"bullhorn\",\"crm_owner\":121,\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"bullhorn\",\"team_id\":36} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:25] local.INFO: [SyncObjects] Sync finished {\"team\":\"1640a0ac-19da-4c3b-90f7-87525f07a6d2\",\"provider\":\"bullhorn\",\"status\":\"disconnected\",\"duration_ms\":49.4,\"usage\":24611864,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Bullhorn account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"ee14d081-077d-4975-93cb-3a27aec76155\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"usage\":24568888,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.WARNING: [Salesforce] Account not connected for user {\"userId\":\"ed89227b-e364-4dfb-b4bf-343f154bf21e\",\"account\":{\"Jiminny\\\\Models\\\\SocialAccount\":{\"id\":1360,\"sociable_id\":245,\"provider_user_id\":\"0052g000003frZNAAY\",\"expires\":null,\"refresh_token_expires\":null,\"provider\":\"salesforce\",\"state\":\"full-refresh\",\"auth_scope\":\"refresh_token web api\",\"retry_after\":null,\"created_at\":\"2024-09-02 06:11:55\",\"updated_at\":\"2024-12-11 08:50:23\"}}} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {\"crm_provider\":\"salesforce\",\"crm_owner\":245,\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {\"crm_provider\":\"salesforce\",\"team_id\":59} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:27] local.INFO: [SyncObjects] Sync finished {\"team\":\"0c33bf2d-1c77-4200-8ed6-6147ad444c30\",\"provider\":\"salesforce\",\"status\":\"disconnected\",\"duration_ms\":59.16,\"usage\":24610920,\"real_usage\":65011712,\"pid\":42210,\"reason\":\"Your Salesforce account has become disconnected. Please login to Jiminny to reconnect.\"} {\"correlation_id\":\"11b492ba-0469-4658-a8ef-e2b338b6fe30\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [SyncObjects] Before memory usage: {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"usage\":24569072,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {\"crm_provider\":\"integration-app\",\"crm_owner\":1695,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Syncing opportunities {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:29] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-deals/run\",\"full_target\":\"connections/zohocrm/actions/query-deals/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing opportunities finished successfully {\"parameters\":{\"since\":\"2026-05-27 06:44:27\",\"strategy\":\"lastModified\"},\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Syncing accounts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:32] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-companies/run\",\"full_target\":\"connections/zohocrm/actions/query-companies/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing accounts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Syncing contacts {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:33] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/query-contacts/run\",\"full_target\":\"connections/zohocrm/actions/query-contacts/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing contacts finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Syncing leads {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"crm_profile_id\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:35] local.INFO: [integration-app] Request {\"request\":\"POST connections/zohocrm/actions/get-converted-leads/run\",\"full_target\":\"connections/zohocrm/actions/get-converted-leads/run\"} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [integration-app] Syncing leads finished successfully {\"since\":\"2026-05-27 06:44:27\",\"to\":null,\"team_id\":3143} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}\n[2026-05-27 12:44:37] local.INFO: [SyncObjects] Sync finished {\"team\":\"1ece66c8-feb1-4df1-b321-21607daf4623\",\"provider\":\"integration-app\",\"status\":\"completed\",\"duration_ms\":7700.63,\"usage\":24780568,\"real_usage\":65011712,\"pid\":42210} {\"correlation_id\":\"7cff0995-8b2e-43c6-85cf-df26c9496f91\",\"trace_id\":\"ce11155c-d4b7-442e-9e20-b79a6bd7bdae\"}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"backend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".env.staging","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dockerfile","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"start.sh","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"frontend-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"worker-video-code, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"config_continue.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"subenv_to_branch_map","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_prod.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qa.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_qai.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"workflows_staging.yml, YAML file","depth":8,"on_screen":false,"role_description":"text"}]...
|
2606155120713928809
|
-2500219111389225731
|
visual_change
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
Analyzing…
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Mail;
use Carbon\Carbon;
use Illuminate\Support\Facades\Log;
use Jiminny\Component\Queue\Constants;
use Jiminny\Jobs\Mailbox\EmailTextRelay;
use Jiminny\Models\TextRelay;
use Google\Service\Gmail as GoogleGmail;
class TextRelayService
{
public function __construct()
{
$credentials = storage_path('text-relay.json');
abort_unless(file_exists($credentials), 422);
putenv('GOOGLE_APPLICATION_CREDENTIALS=' . $credentials);
}
/**
* Fetch the latest messages since the last sync.
*/
public function sync(): array
{
$mailbox = config('jiminny.google_text_user');
$expectedAlias = config('jiminny.deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all';
$expectedHost = config('jiminny.google_text_host');
Log::info('[TextRelayService] Starting sync', [
'mailbox' => $mailbox,
'expected_alias' => $expectedAlias,
'expected_host' => $expectedHost,
]);
$service = $this->getService($mailbox);
$messageHistory = $this->getHistory($service);
$messageIds = [];
foreach ($messageHistory as $histories) {
$messages = $histories->messagesAdded ?? [];
foreach ($messages as $message) {
$messageId = $message->message->id;
if (! $this->isForCurrentEnvironment($service, $mailbox, $messageId, $expectedAlias, $expectedHost)) {
continue;
}
$relayedText = TextRelay::where('email_provider_id', $messageId)->first();
if ($relayedText === null) {
$relayedText = TextRelay::create([
'email_provider' => TextRelay::PROVIDER_GSUITE,
'email_provider_id' => $messageId,
'status' => TextRelay::STATUS_PROCESSING,
]);
}
$job = new EmailTextRelay($messageId, $relayedText);
$job->onQueue(Constants::QUEUE_EMAILS);
// dispatch($job);
Log::info('[TextRelayService] Successfully dispatched message', [
'message_id' => $messageId,
'text_relay_id' => $relayedText->id,
'queue' => Constants::QUEUE_EMAILS,
]);
$messageIds[] = $messageId;
}
}
Log::info('[TextRelayService] Sync completed', [
'mailbox' => $mailbox,
'messages_processed' => count($messageIds),
'message_ids' => array_slice($messageIds, 0, 10),
]);
return $messageIds;
}
public function getHistory(GoogleGmail $service): array
{
$pageToken = null;
$topic = config('jiminny.google_text_relay_topic');
$messages = [];
$historyId = \Cache::get($topic);
// If we have no history stored, WatchMailboxEvents must not have run yet :/
if ($historyId == false) {
$historyId = $this->refreshHistoryPoint($topic);
}
$params = [
'historyTypes' => 'messageAdded',
'startHistoryId' => $historyId,
];
do {
try {
if ($pageToken) {
$params['pageToken'] = $pageToken;
}
$historyResponse = $service->users_history->listUsersHistory(
config('jiminny.google_text_user'),
$params
);
$this->setHistoryPoint($topic, (int) $historyResponse->historyId);
if ($historyResponse->getHistory()) {
$messages = array_merge($messages, $historyResponse->getHistory());
$pageToken = $historyResponse->getNextPageToken();
}
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to fetch Gmail history', [
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
} while ($pageToken);
return $messages;
}
protected function setHistoryPoint(string $topic, int $historyPoint): Carbon
{
$expiresAt = now()->addDay();
\Cache::put($topic, $historyPoint, $expiresAt);
return $expiresAt;
}
public function getService(string $mailbox): GoogleGmail
{
$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->addScope(GoogleGmail::GMAIL_MODIFY);
$client->setAccessType('offline');
$client->setSubject($mailbox);
return new GoogleGmail($client);
}
public function refreshHistoryPoint(string $topic): int
{
$mailbox = config('jiminny.google_text_user');
$service = $this->getService($mailbox);
$watchRequest = new GoogleGmail\WatchRequest();
$watchRequest->setLabelIds(['INBOX']);
$watchRequest->setLabelFilterAction('include');
$watchRequest->setTopicName($topic);
$watchResponse = $service->users->watch($mailbox, $watchRequest);
//$expiryTimestamp = $watchResponse->expiration / 1000;
$historyPoint = (int) $watchResponse->historyId;
$this->setHistoryPoint($topic, $historyPoint);
return $historyPoint;
}
private function isForCurrentEnvironment(
GoogleGmail $service,
string $mailbox,
string $messageId,
string $expectedAlias,
string $expectedHost
): bool {
try {
$message = $service->users_messages->get($mailbox, $messageId);
$headers = $message->getPayload()->getHeaders();
foreach ($headers as $header) {
if ($header->name === 'X-Gm-Original-To') {
$matches = $this->matchesExpectedRecipient($header->value, $expectedAlias, $expectedHost);
if (! $matches) {
// Sanitize PII by removing plus-tag content for logging
$sanitizedOriginalTo = explode('+', $header->value)[0];
Log::info('[TextRelayService] Refused message', [
'message_id' => $messageId,
'original_to_sanitized' => $sanitizedOriginalTo,
]);
}
return $matches;
}
}
Log::warning('[TextRelayService] Refused message: missing X-Gm-Original-To header', [
'message_id' => $messageId,
]);
} catch (\Exception $e) {
Log::error('[TextRelayService] Failed to inspect message', [
'message_id' => $messageId,
'exception' => $e->getMessage(),
]);
\Sentry::captureException($e);
}
return false;
}
private function matchesExpectedRecipient(string $recipient, string $expectedAlias, string $expectedHost): bool
{
$parts = explode('@', $recipient, 2);
if (count($parts) !== 2 || strcasecmp($parts[1], $expectedHost) !== 0) {
return false;
}
$localBase = explode('+', $parts[0], 2)[0];
return strcasecmp($localBase, $expectedAlias) === 0;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
26
Previous Highlighted Error
Next Highlighted Error
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"dcf24093-4455-46d4-9282-4a2581ed1bc6","trace_id":"96d8032a-1905-4903-be5c-e9405c095aef"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0eb801fb-3093-4017-962c-06d801a10a73","trace_id":"99fe297b-7155-47d5-a6a7-d2ea18672b35"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring start {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:06] local.NOTICE: Monitoring end {"correlation_id":"355a8191-fdda-4e9f-b2d4-5e002515214e","trace_id":"6743c452-a029-45bd-8e47-cfabe28496d8"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"2cf37b68-aeb7-4ce0-a5e9-a52f7af8954a","trace_id":"ac1217d6-5e5d-4466-9b47-8946880ebb0b"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"833fa7f5-4850-4d9e-b43d-fe1797b647af","trace_id":"1384fbdf-1d76-4e15-9868-ebb8da257c8a"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:34:00, 2026-05-27 12:36:00] {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"e87fc18f-cd93-4b3b-9c54-2c7f81a86af8","trace_id":"1d750b03-aa19-4619-a227-fcc03a45b770"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"crm:sync-hubspot-objects","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"90f00b85-f027-43e2-b9e0-946861cdfb51","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SyncHubspotObjects] Starting sync {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","usage":24180576,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1499,"provider":"hubspot"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [CrmOwnerResolver] Integration owner matched as CRM Owner {"crm_provider":"hubspot","crm_owner":148,"team_id":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:12] local.INFO: [HubSpot] Syncing opportunities using strategy: lastModified {"team":2} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [Hubspot] Pagination completed {"team_id":2,"endpoint":"https://api.hubapi.com/crm/v3/objects/deals/search","total_requests":1,"total_records_fetched":0,"total_elapsed_seconds":0.58,"average_seconds_per_request":0.58} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [HubSpot] Synced opportunities {"team":2,"strategies":"lastModified","sync_count":0,"total":0,"last_synced_id":null,"duration_ms":593.42} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4","provider":"hubspot","status":"completed","duration_ms":646.6,"usage":24268616,"real_usage":65011712,"pid":42210} {"correlation_id":"79fca9e9-5a21-452c-9c00-6c8b150a9e0f","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","usage":24246528,"real_usage":65011712,"pid":42210} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"2ac0447f-3c8c-4ce0-baeb-b63ddb76fa9b","account":null} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":130,"team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":42} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2d49a54-b645-4637-a7ae-a86cfce6e8e4","provider":"hubspot","status":"disconnected","duration_ms":23.62,"usage":24234488,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"4fe53c8c-5986-4a26-83f9-c9f3ef6c8ec3","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Starting sync {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","usage":24195248,"real_usage":65011712,"pid":42210} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.WARNING: [HubSpot] Account not connected for user {"userId":"33e34a7a-1c02-4f04-87ac-22c3a385e6e3","account":{"Jiminny\\Models\\SocialAccount":{"id":306,"sociable_id":109,"provider_user_id":"11348452","expires":1701077403,"refresh_token_expires":null,"provider":"hubspot","state":"full-refresh","auth_scope":null,"retry_after":null,"created_at":"2020-09-01 16:59:04","updated_at":"2023-11-27 09:30:03"}}} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":109,"team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":29} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:13] local.INFO: [SyncHubspotObjects] Sync finished {"team":"b2b115eb-93ce-4d1b-929c-173757df8fba","provider":"hubspot","status":"disconnected","duration_ms":10.72,"usage":24257312,"real_usage":65011712,"pid":42210,"reason":"Your HubSpot account has become disconnected. Please login to Jiminny to reconnect."} {"correlation_id":"3483c3db-4a61-48ce-98e6-0161516e75e2","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:notify-not-logged","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"200ac210-21c8-4677-b562-a0dd4a8bb7aa","trace_id":"8b995657-ab68-439c-86b1-ba462fca3f4d"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Starting sync {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","usage":24214824,"real_usage":65011712,"pid":42210} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.WARNING: [HubSpot] Account not connected for user {"userId":"71e3aac5-fb66-47c5-a236-2d051ae3e319","account":null} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"hubspot","crm_owner":256,"team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"hubspot","team_id":49} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:14] local.INFO: [SyncHubspotObjects] Sync finished {"team":"c6b9d6b0-b48d-4832-a68c-a57d60651888","provider":"hubspot","status":"disconnected","duration_ms":49.63,"usage":24230936,"real_usage":65011712,"pid":42210,"reason":"Social account for HubSpot cannot be found. Please login to Jiminny to connect."} {"correlation_id":"460dca4b-02d5-43c8-84dc-ac61ff551b40","trace_id":"84bc4955-185c-4e9f-a049-1469983354dc"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] STARTING Inbox Sync {"host":"docker_lamp_1"} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: [EmailSchedule] FINISHED Inbox Sync {"host":"docker_lamp_1","events":2} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:17] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"cfff3469-314f-4fc5-b975-90204441b4a5","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Inbox service] Skipping METADATA SYNC for inbox 59 due to unauthorized access to the mailbox {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":59} {"correlation_id":"0de516de-9f67-4aac-a228-5bce0b9cae18","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:18] local.INFO: [Sync Mailbox] Sync start {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.WARNING: [Salesforce] Account not connected for user {"userId":"641f1acb-16b8-42d1-8726-df52979dad0e","account":{"Jiminny\\Models\\SocialAccount":{"id":1500,"sociable_id":143,"provider_user_id":"0052g000003frelAAA","expires":null,"refresh_token_expires":null,"provider":"salesforce","state":"full-refresh","auth_scope":"refresh_token web api","retry_after":null,"created_at":"2026-02-06 08:39:03","updated_at":"2026-05-14 09:46:30"}}} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] Integration owner is not connected, attempting team members {"crm_provider":"salesforce","crm_owner":143,"team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team members found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [CrmOwnerResolver] No team member found with active crm connection {"crm_provider":"salesforce","team_id":1} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.ERROR: Failed to set service context for google: Your Salesforce account has become disconnected. Please login to Jiminny to reconnect. {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:19] local.INFO: [Sync Mailbox] Sync complete {"inbox_id":212} {"correlation_id":"dcf90e7e-f15f-4d68-96d5-4637d561bc8a","trace_id":"9fe9bdc7-d7b3-4663-aaee-b99d08fcd4be"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Getting offset from database {"offset":"","jiminny_team_id":1} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal API] Fetching latest journal entry {"url":"https://api.hubapi.com/webhooks/v4/journal/latest"} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] No data {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.WARNING: [HubSpot Journal Polling] Maximum empty results reached, stopping {"empty_results":5,"max_empty_results":5} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Service ending {"runtime_seconds":56,"total_cycles":5,"files_downloaded":0,"empty_files":0,"other_portal_skipped":0,"total_events":0,"events_per_file":0,"avg_api_ms":168.0,"avg_download_ms":0.0,"avg_transform_ms":0.0,"avg_process_ms":0.0,"peak_memory_mb":99.88} {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:36:21] local.INFO: [HubSpot Journal Polling] Released polling lock {"correlation_id":"02c7da60-8ba0-415c-8f55-8d8337c5e442","trace_id":"adc13529-11a5-47f8-9bdf-1c940564c362"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:04] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"f7111cf8-923f-4249-a7e6-22bc9c6da875","trace_id":"0277779e-61f4-46a9-8c06-68a1e14548a9"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"1d77aff1-8cd7-4126-b383-a9d6f1036b9b","trace_id":"3e459ee7-82d6-4cff-bf3c-725c78c51fe4"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring start {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:07] local.NOTICE: Monitoring end {"correlation_id":"6f19b4b6-bdc4-4373-bb83-8026c5ca9541","trace_id":"ce167b98-a0e2-4042-81df-c199e63a7178"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b1f5b0ea-8979-458f-85fa-9ec8f107f890","trace_id":"3d6c9714-44f6-4182-9ef6-20b0b591ec16"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"6de9ec5b-fef1-46dc-af6f-6efd7159b14c","trace_id":"44823d7e-2f30-4f2b-b473-57b40b8e3a32"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] STARTING batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: [EmailSchedule] FINISHED batch create {"host":"docker_lamp_1"} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:create","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":60.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"8ca29b95-53d5-49b3-974a-bd619436381c","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:13] local.INFO: [Jiminny\Jobs\Mailbox\CreateBatches] processed 1 inboxes and created 0 batches {"userId":null,"batchSize":30,"maxBatches":1000} {"correlation_id":"1d77b07e-080e-4829-a50a-4201e4336a52","trace_id":"559e80b1-5084-40ec-a006-c4079fb82e1a"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:37:14] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:sync","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"35d4b43f-f881-48b1-b35d-a7a6279d383e","trace_id":"5b39768e-c490-40c1-a320-7d6c0f731049"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0a7f0331-2b33-4388-b36d-b10596474999","trace_id":"512c1e1b-a692-4d44-b1b7-8c4b1955c0c5"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"05985339-0f15-4991-8d86-a314a08b894e","trace_id":"e687a910-c51a-4aac-af86-d647fc6f304a"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring start {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:06] local.NOTICE: Monitoring end {"correlation_id":"33239855-c5df-4bb0-a469-b1654a53d484","trace_id":"81e70b33-817a-41de-a80a-41bc709c8731"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"ceda4686-61f9-4efd-9dac-425274190b6c","trace_id":"2a7a6c33-b0c4-4299-8fa7-31759e937e7d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"4b4bcbc0-01ae-4255-9bf6-ad0227189cae","trace_id":"4e72b4d7-c681-4248-8937-3c67e3fbd58d"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:36:00, 2026-05-27 12:38:00] {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"9aff710c-8d60-4841-a3b2-4032ca3413c6","trace_id":"4413a568-2935-486c-91f9-d031a51c69cc"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:38:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:retry-failed","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"764a1ac9-502b-4a6d-ae0b-3820cc718427","trace_id":"f7829e9d-3a75-4e13-867d-1160e876cf07"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"113c64b0-f004-4000-94a7-78ce58c626b2","trace_id":"728eddb5-54b0-487a-91a7-8b0032c5bb78"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"23f10df5-34f4-4e04-85f1-e82db52af5e6","trace_id":"db62bd45-dd20-422c-82cb-7acb7ddb2e06"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring start {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:06] local.NOTICE: Monitoring end {"correlation_id":"2acea05b-8214-439e-a744-d02f85685068","trace_id":"a8dfd4cd-7eef-45dc-acc0-8f65eaf66fdd"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:08] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"707d1d04-2d6f-4db8-89b4-e16fe9a83709","trace_id":"6f7049ea-fa50-46e2-8bf5-ed0e5effce45"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"07eef107-678e-444c-b7a5-0cd0737b4fbf","trace_id":"a3272e8e-c5ea-42cb-b073-3debce3e06fe"}
[2026-05-27 12:39:11] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Fetching token {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [SocialAccountService] Token retrieved {"socialAccountId":1496,"provider":"aircall"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:11] local.INFO: [EncryptedTokenManager] Generating access token. {"mode":"legacy"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.ERROR: [Aircall] Re-activating webhooks failed {"team_id":1,"reason":"{\"message\":\"Forbidden\"}"} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:12] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"activity:aircall:check-and-renew","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"b001759e-46c2-4b1b-8752-92cd1d2aad3b","trace_id":"ee540c60-c191-444e-acfa-a9d7ae0ab9b0"}
[2026-05-27 12:39:14] local.INFO: [RetryFailedDownloads] Starting {"options":{"from":null,"to":null,"help":false,"silent":false,"quiet":false,"verbose":false,"version":false,"ansi":null,"no-interaction":false,"env":null}} {"correlation_id":"6ec39f30-28b3-4cc9-8c60-5bc8d0b55e63","trace_id":"e3428bc3-d52e-4a94-8d33-5c246d0bafd6"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: [ScheduleBotCommand] Dispatched activities to capture {"count":0} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:03] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"meeting-bot:schedule-bot","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"c8027067-1a7b-4920-ab15-acac10f5730c","trace_id":"ec37bb49-9131-40f3-8033-23fbd7a032ad"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:05] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"dialers:monitor-activities","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"28d27090-0dec-46a4-8a79-2c6db1e89d26","trace_id":"6f6d7e96-ec35-4946-ac91-6496125a5291"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring start {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:06] local.NOTICE: Monitoring end {"correlation_id":"02ab863c-cfba-4b43-aa4f-cc0b1c2f671d","trace_id":"e8335595-dc87-48b1-a209-abbbe3e404fd"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:07] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:skip-lists:refresh","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"0ded3374-9752-49d6-9446-af7f83b45a71","trace_id":"1a8bb850-013c-4a60-a56f-ffda95442111"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] STARTING batch process {"host":"docker_lamp_1"} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: [EmailSchedule] FINISHED batch process {"host":"docker_lamp_1","processed":0} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:09] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"mailbox:batch:process","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"d587c208-942b-4199-bfb0-35831bdc80d5","trace_id":"93cc7bc8-613a-4737-8ed1-06d35111a6f2"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage before starting command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryPeakBeforeCommandInMb":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Running conference:monitor:count command for activities in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: [conference:monitor:count] No activities found in (2026-05-27 12:38:00, 2026-05-27 12:40:00] {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:10] local.INFO: Jiminny\Console\Commands\Command::run Memory usage for command {"command":"conference:monitor:count","memoryBeforeCommandInMb":60.0,"memoryAfterCommandInMB":62.0,"memoryPeakBeforeCommandInMb":99.883,"memoryPeakAfterCommandInMB":99.883} {"correlation_id":"588009b6-a95e-4566-9da5-f103a68ae30e","trace_id":"14af6725-02bf-4a28-b860-aa71fea555bc"}
[2026-05-27 12:40:11] local.INFO: ...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78608
|
2759
|
1
|
2026-05-27T12:45:18.054408+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885918054_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <]8• Wed 27 May 15:45:17DOCKER₴81DEV (docker)₴2-zsh883T1DOCKER (docker-compose)docker_lamp_1Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yetassigned an oskipping...docker_lamp_1I Syncingobjects for Dev Zoho CRMclient (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_1docker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects >'/proc/1/fd/1'docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule:Done waiting forschedule:run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09msDONEdocker_1amp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_112026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_1ONE2026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s Ddocker_1amp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects...... RUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_1ING2026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEdocker_lamp_1DOCKER (docker-compose)screenpipe"О 84-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)https://ubuntu.com/esm or run: sudo pro status181@ View ConfigView in Docker DesktopL View Logsw Enable Watchd Detach886•..-10-30-140-255:~ (-zsh)$7PROD*** System restart required ***Last login: Tue May 26 12:25:05 2026 from 212.5.153.87lukas@jiminny-prod-bastion:~$X T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovallacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.STAGESystem restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87stion:~$ |XIT5QA (-zsh)~ $ 0T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTENDEXT (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [EXTENSION...
|
NULL
|
8488881970964695964
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <]8• Wed 27 May 15:45:17DOCKER₴81DEV (docker)₴2-zsh883T1DOCKER (docker-compose)docker_lamp_1Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yetassigned an oskipping...docker_lamp_1I Syncingobjects for Dev Zoho CRMclient (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_1docker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects >'/proc/1/fd/1'docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule:Done waiting forschedule:run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09msDONEdocker_1amp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_112026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_1ONE2026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s Ddocker_1amp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects...... RUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_1ING2026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEdocker_lamp_1DOCKER (docker-compose)screenpipe"О 84-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)https://ubuntu.com/esm or run: sudo pro status181@ View ConfigView in Docker DesktopL View Logsw Enable Watchd Detach886•..-10-30-140-255:~ (-zsh)$7PROD*** System restart required ***Last login: Tue May 26 12:25:05 2026 from 212.5.153.87lukas@jiminny-prod-bastion:~$X T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovallacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.STAGESystem restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87stion:~$ |XIT5QA (-zsh)~ $ 0T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTENDEXT (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [EXTENSION...
|
78607
|
NULL
|
NULL
|
NULL
|
|
78607
|
2759
|
0
|
2026-05-27T12:45:11.999020+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885911999_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% C8• Wed 27 May 15:45:11DOCKER (docker-compose)screenpipe"181DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)yet assigned anowner. skipping….docker_lamp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yet assignedan owner. skipping...docker_1amp_1I Syncing objects for Dev Zoho CRM client (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11S DONEdocker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects > '/proc/1/fd/1' 2>&1docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waiting forschedule: run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_1amp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny (Jobs\Crm\SyncObjects1s DONEdocker_lamp_1ING2026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_1amp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_12026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEX4-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovaliksMaсBook-Pro-Jiminny ~ $ I|XT4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87stion:~$ |T5QA (-zsh)~ $ 0X T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ПEXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
-8412758606322528349
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% C8• Wed 27 May 15:45:11DOCKER (docker-compose)screenpipe"181DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)yet assigned anowner. skipping….docker_lamp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yet assignedan owner. skipping...docker_1amp_1I Syncing objects for Dev Zoho CRM client (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11S DONEdocker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects > '/proc/1/fd/1' 2>&1docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waiting forschedule: run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_1amp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny (Jobs\Crm\SyncObjects1s DONEdocker_lamp_1ING2026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_1amp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_12026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEX4-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovaliksMaсBook-Pro-Jiminny ~ $ I|XT4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87stion:~$ |T5QA (-zsh)~ $ 0X T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ПEXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78606
|
2760
|
1
|
2026-05-27T12:44:58.810028+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885898810_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rapstomViewCoocWindowFV faVsco.|s ~$ JY-20915-fix- rapstomViewCoocWindowFV faVsco.|s ~$ JY-20915-fix-mlpho l0005.onghmallopnlpPmoxo.ong"medd"sueamine.oneHwowercalonesdlestorce.onesamconephp secure-headers.phgwpservices.ongppslack.ohephptimezones.ohgphp webhook-server.oho> En contrit.→darabasrontcent>Ulangnode modtles hhrary toon→tnanstant mualiid> @ resourcesv hroutesphe api.phpphe api_v2.phpne concole nbophe customer_api.phpMoamsioo0o.oneMo haalth obopupro cetco weo.oneMaweb cnopp weonook.one> scriptev(ln storage> O apo>@ debugbar> &a frameworkviloascitianore0 audio wav= custom ogS ci.poodedo16 €NNNN= hubspocioumal-polllooFttie3989838oubuze tuncczon conscruccoScredenczals = scorage oachl oadxext-relay."sonCooe: 4747outenve as.'GOOGLE_APPLICATION,CREUENTLALS=" • Scredentzals):*Ferch the uintest messanes since the tlost suncnuhideuncrion sunc t arcaySmailbox = config( key. "J1minny.google_text_user'):SaynectedHost = contal kov'iminny-google_text_host'):Log::info( message: '[TextRelayService) Starting sync', [Inalboyl = Smaflhox"exoceccoaczos or dexdccconblosexpecceo nost o sexaecreonosSservice = Sthis->getService(Smailbox):SnessageHistory = Sthis->getHistory(Sservice):Snessageds=toreachSnessagchtstory as shistoresSnessaces= shistortes-snessages.odeo.foreach (Snessages as SneSnessaceld a smessage-ynessage.>105contaiinue :Srel averteyt = Tayrhe aye.rheneteenas nnousden so Shase.tiscallavartay?=== ombelSoallaverlayt = Taytta auecrantatTaytRAlay: - ponvInEe eSUTTE"omail nnovidon Sat as Coacesoatal'status' => TextRelay::STATUSPROCESSINGlaravellog x# Sf Jiminny@localhost2 HSJocal jiminny@localhostconsole (PROD)& console (EU& console [STAGING(2826-85-27 12:36:83) Zocal.INF0: Jiminny\Console\Connands\Command::run Memory usage before starting connand {"command":"meeting-bot:schedule-bo(2826-85-27 12:36:83) Zocal.INF0: [ScheduleBotConnand) Dispatched activities to capture {"count":0} {"correlation_id":"dcf24893-4455-46d4-9282-42826-85-27 12:36:83Kocewru "wnny consote conhono oahhounwaohuoton connoco(2826-85-27 12:36:851Local.INFO: Jiminny\Console\Connands\Comnand: :run Memory usage before starting connand {"comnand":"dialecs:monitor-activi(2826-85-27 12:36:851Kocwruwwny consore conhanosoahoun aoh usaouon coninoconl(2826-85-27 12:36:861 Zocal.NOTTCE: Monitoning start(2826-95-27 12:36:861Kocwwtrnontowno en(2826-85-27 12:36:88)02826-85-2712:36:8917826-85-212826-85-277826-85-72(2826-85-2712:36:69ory usage before starting connand {"comnand":"mailbox:batch:process"ema Schedulel StaRiiiNs oatch processhostdockertattcorrelatton.0":8557a745-4858-4098-0430-4817ema Scheduel FiNSHED barch orocessprocessed":0} ("correlation_id*.*833fa745-4859-42826-85-72and *"nabox:barchtorocessnenoryseronelland: :run Menory usage before starting command ("command": "conference:monitor:count"acrav des n 2826-85-21 0:34:88, 4826-85-4 36:88 connela2826-85-212:36:11,ocaaieo: sminny console connands, command:arun Memony usage on(2926-85-2712:36:12.L2826-85-2112:36:12.Local. INFO:L2826-85-2212:36:12.(2826-85-2212:36:12eeada"al nasey" Eeonndllntton:70901010.97104W6.06846hLocal. INFO: [Crm0wnerResolver] Integration owner matched as CRM Owner {"crn_provider";"hubspot", "crm_ouner":148, "tean_id":2}(2026-85-27 12:36:13C2924-A5.27(2826-85-27 12:36:13]1290k.A6.27 12+724-17cocat.anro.Synchuospo uonects sync tinashedtt•":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4", "provider":"hubspot", "status":f290k.A6.27 12+24-17)Local.WARNING: [HubSpot) Account not connected for user {"userid":"2ac0447f-3c8c-4Ce8-baeb-b63ddb76fa9b", "account":null} {*of290k.06.27 12-24-171(2826-85-27 12:36:13117826-85-77 12-74-171(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36-1312826-85-4733633(2826-85-27 12:36-141(2926-85-27 12÷36-14112:36:142826-85-7232130:4Cascad,100% 142*Wed 27 May 15:44:58+0.Cachado Codo XoKick off a new proinet. Make chanod.across your entire codebaseHuhSnor Account not conneccedd"**303a8c5-7060-4705-[CREDIT_CARD] "accountenuanected, attempting tean nenbers {"crm_providehubspot","crm.ovnetive en connectcion con providen". "hubsnor" "teansidee4o% cdTCPHP CVSNRI.ROOnnC Fixing TextRelayService Test:@ Fixing TextRelayService Error:Ask anything (XoL)Local.INFO: Jiminny\Console\Connands\Comnand::run Menory usage before starting connand {"comnand": "mailbox: sync", "nenoryßefoCund ehaeteestaatonhen dirannolaton hitinaRiho,tilhechhntchontroenelhAdhotvThe Hunspell plugin has been deprecated.tina theIModeur Tatmeainen...
|
NULL
|
-4058396054068322060
|
NULL
|
visual_change
|
ocr
|
NULL
|
rapstomViewCoocWindowFV faVsco.|s ~$ JY-20915-fix- rapstomViewCoocWindowFV faVsco.|s ~$ JY-20915-fix-mlpho l0005.onghmallopnlpPmoxo.ong"medd"sueamine.oneHwowercalonesdlestorce.onesamconephp secure-headers.phgwpservices.ongppslack.ohephptimezones.ohgphp webhook-server.oho> En contrit.→darabasrontcent>Ulangnode modtles hhrary toon→tnanstant mualiid> @ resourcesv hroutesphe api.phpphe api_v2.phpne concole nbophe customer_api.phpMoamsioo0o.oneMo haalth obopupro cetco weo.oneMaweb cnopp weonook.one> scriptev(ln storage> O apo>@ debugbar> &a frameworkviloascitianore0 audio wav= custom ogS ci.poodedo16 €NNNN= hubspocioumal-polllooFttie3989838oubuze tuncczon conscruccoScredenczals = scorage oachl oadxext-relay."sonCooe: 4747outenve as.'GOOGLE_APPLICATION,CREUENTLALS=" • Scredentzals):*Ferch the uintest messanes since the tlost suncnuhideuncrion sunc t arcaySmailbox = config( key. "J1minny.google_text_user'):SaynectedHost = contal kov'iminny-google_text_host'):Log::info( message: '[TextRelayService) Starting sync', [Inalboyl = Smaflhox"exoceccoaczos or dexdccconblosexpecceo nost o sexaecreonosSservice = Sthis->getService(Smailbox):SnessageHistory = Sthis->getHistory(Sservice):Snessageds=toreachSnessagchtstory as shistoresSnessaces= shistortes-snessages.odeo.foreach (Snessages as SneSnessaceld a smessage-ynessage.>105contaiinue :Srel averteyt = Tayrhe aye.rheneteenas nnousden so Shase.tiscallavartay?=== ombelSoallaverlayt = Taytta auecrantatTaytRAlay: - ponvInEe eSUTTE"omail nnovidon Sat as Coacesoatal'status' => TextRelay::STATUSPROCESSINGlaravellog x# Sf Jiminny@localhost2 HSJocal jiminny@localhostconsole (PROD)& console (EU& console [STAGING(2826-85-27 12:36:83) Zocal.INF0: Jiminny\Console\Connands\Command::run Memory usage before starting connand {"command":"meeting-bot:schedule-bo(2826-85-27 12:36:83) Zocal.INF0: [ScheduleBotConnand) Dispatched activities to capture {"count":0} {"correlation_id":"dcf24893-4455-46d4-9282-42826-85-27 12:36:83Kocewru "wnny consote conhono oahhounwaohuoton connoco(2826-85-27 12:36:851Local.INFO: Jiminny\Console\Connands\Comnand: :run Memory usage before starting connand {"comnand":"dialecs:monitor-activi(2826-85-27 12:36:851Kocwruwwny consore conhanosoahoun aoh usaouon coninoconl(2826-85-27 12:36:861 Zocal.NOTTCE: Monitoning start(2826-95-27 12:36:861Kocwwtrnontowno en(2826-85-27 12:36:88)02826-85-2712:36:8917826-85-212826-85-277826-85-72(2826-85-2712:36:69ory usage before starting connand {"comnand":"mailbox:batch:process"ema Schedulel StaRiiiNs oatch processhostdockertattcorrelatton.0":8557a745-4858-4098-0430-4817ema Scheduel FiNSHED barch orocessprocessed":0} ("correlation_id*.*833fa745-4859-42826-85-72and *"nabox:barchtorocessnenoryseronelland: :run Menory usage before starting command ("command": "conference:monitor:count"acrav des n 2826-85-21 0:34:88, 4826-85-4 36:88 connela2826-85-212:36:11,ocaaieo: sminny console connands, command:arun Memony usage on(2926-85-2712:36:12.L2826-85-2112:36:12.Local. INFO:L2826-85-2212:36:12.(2826-85-2212:36:12eeada"al nasey" Eeonndllntton:70901010.97104W6.06846hLocal. INFO: [Crm0wnerResolver] Integration owner matched as CRM Owner {"crn_provider";"hubspot", "crm_ouner":148, "tean_id":2}(2026-85-27 12:36:13C2924-A5.27(2826-85-27 12:36:13]1290k.A6.27 12+724-17cocat.anro.Synchuospo uonects sync tinashedtt•":"abae74b8-bfa8-4383-9a7f-89f4bf2bdbb4", "provider":"hubspot", "status":f290k.A6.27 12+24-17)Local.WARNING: [HubSpot) Account not connected for user {"userid":"2ac0447f-3c8c-4Ce8-baeb-b63ddb76fa9b", "account":null} {*of290k.06.27 12-24-171(2826-85-27 12:36:13117826-85-77 12-74-171(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36:131(2826-85-27 12:36-1312826-85-4733633(2826-85-27 12:36-141(2926-85-27 12÷36-14112:36:142826-85-7232130:4Cascad,100% 142*Wed 27 May 15:44:58+0.Cachado Codo XoKick off a new proinet. Make chanod.across your entire codebaseHuhSnor Account not conneccedd"**303a8c5-7060-4705-[CREDIT_CARD] "accountenuanected, attempting tean nenbers {"crm_providehubspot","crm.ovnetive en connectcion con providen". "hubsnor" "teansidee4o% cdTCPHP CVSNRI.ROOnnC Fixing TextRelayService Test:@ Fixing TextRelayService Error:Ask anything (XoL)Local.INFO: Jiminny\Console\Connands\Comnand::run Menory usage before starting connand {"comnand": "mailbox: sync", "nenoryßefoCund ehaeteestaatonhen dirannolaton hitinaRiho,tilhechhntchontroenelhAdhotvThe Hunspell plugin has been deprecated.tina theIModeur Tatmeainen...
|
78605
|
NULL
|
NULL
|
NULL
|
|
78605
|
2760
|
0
|
2026-05-27T12:44:55.695883+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885895695_m2.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Loading Data Sources…
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","depth":3,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.11037234,"height":0.054269753},"on_screen":true,"value":"The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"bounds":{"left":0.8753325,"top":0.9074222,"width":0.095744684,"height":0.054269753},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":4,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Loading Data Sources…","depth":2,"bounds":{"left":0.6625665,"top":0.8347965,"width":0.06948138,"height":0.011173184},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":2,"bounds":{"left":0.6625665,"top":0.8667199,"width":0.06948138,"height":0.011173184},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.09740692,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8374335,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.85272604,"top":0.019952115,"width":0.062832445,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8664834885130458081
|
-5258283680405601814
|
visual_change
|
accessibility
|
NULL
|
The Hunspell plugin has been deprecated. If you The Hunspell plugin has been deprecated. If you're not writing in Hungarian, you can safely uninstall Hunspell without affecting the dictionaries for other languages.
text/html
text/html
text/html
Loading Data Sources…
Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78604
|
NULL
|
0
|
2026-05-27T12:44:47.495159+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885887495_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <78• Wed 27 May 15:44:47DOCKER₴81DEV (docker)₴2-zsh883DOCKER (docker-compose)yet assigned anowner. skipping….docker_lamp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yet assigned an owner. skipping...docker_1amp_1I Syncing objects for Dev Zoho CRM client (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11S DONEdocker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects > '/proc/1/fd/1' 2>&1docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waiting forschedule: run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_1amp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny (Jobs\Crm\SyncObjects1s DONEdocker_lamp_1ING2026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_1amp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_12026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEDOCKER (docker-compose)screenpipe"O ₴4-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovaliksMacBook-Pro-Jiminny ~ $ [|XT4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)X T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTEND17EXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [EXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
266102203051547299
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <78• Wed 27 May 15:44:47DOCKER₴81DEV (docker)₴2-zsh883DOCKER (docker-compose)yet assigned anowner. skipping….docker_lamp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yet assigned an owner. skipping...docker_1amp_1I Syncing objects for Dev Zoho CRM client (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11S DONEdocker_lamp_1'/usr/local/bin/php' 'artisan'crm: sync-objects > '/proc/1/fd/1' 2>&1docker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waiting forschedule: run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_1amp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny (Jobs\Crm\SyncObjects1s DONEdocker_lamp_1ING2026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_1amp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_12026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:37 Jiminny\Jobs\Crm\SyncObjects7s DONEDOCKER (docker-compose)screenpipe"O ₴4-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovaliksMacBook-Pro-Jiminny ~ $ [|XT4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)X T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTEND17EXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [EXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
78603
|
NULL
|
NULL
|
NULL
|
|
78603
|
2757
|
44
|
2026-05-27T12:44:35.133178+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885875133_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20915-fix-missing-head Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3150964534923304660
|
-4304507549388960332
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20915-fix-missing-head Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <8• Wed 27 May 15:44:34DOCKER (docker-compose)screenpipe"181DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)anowner.skipping...docker_lamp_1I Team Laravel 11 Company 2024 (780c6836-764b-4e47-9a05-cfefbab6e590) is notyet assigned an owner. skipping..docker_1amp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yetassigned an owner. skipping...docker_lamp_1I Syncingobjects for Dev Zoho CRM client (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11s DONEdocker_lamp_1• '/usr/local/bin/php' 'artisan'crm: sync-objects › '/proc/1/fd/1' 2>&1docker_lamp_1docker_lamp_1docker_lamp_1INGrun_artisan_schedule: Done waiting forschedule: run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_1amp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny (Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_1amp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_lamp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_1amp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:27 Jiminny\Jobs\Crm\SyncObjects67.35ms DONEdocker_lamp_12026-05-27 12:44:29 Jiminny\Jobs\Crm\SyncObjectsRUNNING-zsh85...ip-10-30-129-190:~ (nc)886...-10-30-140-255:~ (-zsh)$7T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-KovallacBook-Pro-Jiminny ~ $ I|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87stion:~$ |T5QA (-zsh)~ $ 0T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ OPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [EXTENSIONView in Docker Desktopo View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78602
|
NULL
|
0
|
2026-05-27T12:44:31.273206+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885871273_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormViewNeWENNCCoocKetucioTOOI-WindovfaVsco.s~ PhpStormViewNeWENNCCoocKetucioTOOI-WindovfaVsco.s~v B appv circiedv oackend-code)= .env.staging•, Dockerfileastarsh→Trontendeemoworkaracodea worker-video-codecontavmll& config_continue.ymisiheny to wanch man@ workflows_prod.ymworkflows_qa.ymlworkflows_gai.ymlworkflows_staging.ymlworkflows.subenv.vml>C.curson>D2.aithub>@.sonarlin>@ yscode>@,windsunvbapp>êa Actionsv_ component> O AcAction temsBActvityActvitwAnaivtdMlActvitysearchEAlACTIVITVIVOGelae wewneQD AskAnythingmTntoemeventeocctorelstracr.5yp0s-2nwsonce wihny servcostiCass eXKeLaySeruCe16@public function -constructeewhnuthinectomotsan.esocweton SanesnooteltlimnouMAWSBillingManagementIMCachdCoachingFeedbackAAAAMGuintrMGietamorAnlMnatshaed-waaooên DateTime0 DealRisks0 ElasticSearchhav oroditet octexterellay isonabortunlessftleex. stsScredentalscode: 472outeny assianment"GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):* Fetch the latest messages since the last suncpublic function syncO: arraySnailbox = config(key: "jiminny.google_text_user');Coxonctedhost a contzal xoy"jiminny.google-text_host');Log:: info( message: "(TextRelayService) Starting sync', "nazloox Swarlooxexpecreo auras sexpecrednclasPXOPCIPONOSE L SOXOPCKOOHOSTSsenvice = Sthis->getService(Snailbox)essaoehstoryensosoertstoniesenmressaoeossfoneach (SnessageHistory as Shistonies) ?Snessages = Shistonies-snessagesAdded 22 (1:foreach (Snessages as Seesasde) !Snessnoeid=smessage-sneseaoeo>deAAAAUUUUUUUUGUNNNUUUUNNNNSCnolnvortoyt TowtoolauerrhorotcotaSF (iminny@localhos2826-85-27 12:36:034820-05-4430.051(2026-05-27 12:36:061 Zocal.NOTTCE: Monitoring start {"correlation_id":"355a819102o-0594D0-d0octewulernonowhe tconaeonos00ye820-05944D0H00ocewruwhconsoleoahosconanorun neaonyus470-0594430-002026-85-27 12:36:891RocaLonEn2826-85-47736789(2026-85-27 12:36:891(EnailSchedule) STARTING batch process {"host":(enaitSchedulel FINTSHED batch process ("host"826-85-24 2:36:8902826-85-27 12:36-1112826-85-24 123364Local.INFO: Jininny console \commands \conmand::run Henory us.Localatel: cunmina conterence:cons con:count connand for actL2826-85-21 12:36:11)conterence:cont con:count No actaiuittes found2826-85-24 123364122L2826-85-21 12:36:12)DAWOAEY2026-85-21 12:36:12)DAWOASODDIRkD12924-A0.27 12.34-121(2026-05-27 12:36:132020-05*21 12.50.152020-05-21 12.50.1514870-85944D0-51470-0594250-51470-8594S0-51470-85-4S045(2026-85-27 12:36-137826-85-24 123364512826-85-24 121361134(2826-85-27 12-36-1412826-85-24 12136114(2826-95-27 12-36:1412826-85-27 12:361142026-05-21 12:36:172ANOAC.2712.2k.17Local.INFO:Cra0unerResolver) Integration ouner natched asLocal.INFO: [HubSpot) Synced opportunities {"tean":2,"stratLocal.INFO: [SyncHubspot0bjects) Sync finished {"tean":"abaLocal,INFO: [CrmQunerResolver) No tean nenbers found with actiLocal,INFO: [ComQunerResolver) No tean nenber found with activocersvnciuosodtcecmenno sunctein/40ocaeakau ooeccouneno connecteo ton user...
|
NULL
|
-2178242318897453888
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormViewNeWENNCCoocKetucioTOOI-WindovfaVsco.s~ PhpStormViewNeWENNCCoocKetucioTOOI-WindovfaVsco.s~v B appv circiedv oackend-code)= .env.staging•, Dockerfileastarsh→Trontendeemoworkaracodea worker-video-codecontavmll& config_continue.ymisiheny to wanch man@ workflows_prod.ymworkflows_qa.ymlworkflows_gai.ymlworkflows_staging.ymlworkflows.subenv.vml>C.curson>D2.aithub>@.sonarlin>@ yscode>@,windsunvbapp>êa Actionsv_ component> O AcAction temsBActvityActvitwAnaivtdMlActvitysearchEAlACTIVITVIVOGelae wewneQD AskAnythingmTntoemeventeocctorelstracr.5yp0s-2nwsonce wihny servcostiCass eXKeLaySeruCe16@public function -constructeewhnuthinectomotsan.esocweton SanesnooteltlimnouMAWSBillingManagementIMCachdCoachingFeedbackAAAAMGuintrMGietamorAnlMnatshaed-waaooên DateTime0 DealRisks0 ElasticSearchhav oroditet octexterellay isonabortunlessftleex. stsScredentalscode: 472outeny assianment"GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):* Fetch the latest messages since the last suncpublic function syncO: arraySnailbox = config(key: "jiminny.google_text_user');Coxonctedhost a contzal xoy"jiminny.google-text_host');Log:: info( message: "(TextRelayService) Starting sync', "nazloox Swarlooxexpecreo auras sexpecrednclasPXOPCIPONOSE L SOXOPCKOOHOSTSsenvice = Sthis->getService(Snailbox)essaoehstoryensosoertstoniesenmressaoeossfoneach (SnessageHistory as Shistonies) ?Snessages = Shistonies-snessagesAdded 22 (1:foreach (Snessages as Seesasde) !Snessnoeid=smessage-sneseaoeo>deAAAAUUUUUUUUGUNNNUUUUNNNNSCnolnvortoyt TowtoolauerrhorotcotaSF (iminny@localhos2826-85-27 12:36:034820-05-4430.051(2026-05-27 12:36:061 Zocal.NOTTCE: Monitoring start {"correlation_id":"355a819102o-0594D0-d0octewulernonowhe tconaeonos00ye820-05944D0H00ocewruwhconsoleoahosconanorun neaonyus470-0594430-002026-85-27 12:36:891RocaLonEn2826-85-47736789(2026-85-27 12:36:891(EnailSchedule) STARTING batch process {"host":(enaitSchedulel FINTSHED batch process ("host"826-85-24 2:36:8902826-85-27 12:36-1112826-85-24 123364Local.INFO: Jininny console \commands \conmand::run Henory us.Localatel: cunmina conterence:cons con:count connand for actL2826-85-21 12:36:11)conterence:cont con:count No actaiuittes found2826-85-24 123364122L2826-85-21 12:36:12)DAWOAEY2026-85-21 12:36:12)DAWOASODDIRkD12924-A0.27 12.34-121(2026-05-27 12:36:132020-05*21 12.50.152020-05-21 12.50.1514870-85944D0-51470-0594250-51470-8594S0-51470-85-4S045(2026-85-27 12:36-137826-85-24 123364512826-85-24 121361134(2826-85-27 12-36-1412826-85-24 12136114(2826-95-27 12-36:1412826-85-27 12:361142026-05-21 12:36:172ANOAC.2712.2k.17Local.INFO:Cra0unerResolver) Integration ouner natched asLocal.INFO: [HubSpot) Synced opportunities {"tean":2,"stratLocal.INFO: [SyncHubspot0bjects) Sync finished {"tean":"abaLocal,INFO: [CrmQunerResolver) No tean nenbers found with actiLocal,INFO: [ComQunerResolver) No tean nenber found with activocersvnciuosodtcecmenno sunctein/40ocaeakau ooeccouneno connecteo ton user...
|
78601
|
NULL
|
NULL
|
NULL
|
|
78601
|
2758
|
46
|
2026-05-27T12:44:28.217609+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885868217_m2.jpg...
|
PhpStorm
|
faVsco.js
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormProinet vvapov circiedv oackend-code= .env PhpStormProinet vvapov circiedv oackend-code= .env.staging•, Dockerfileastarsh→Trontendeemo→ workaracodea worker-video-codecontavmll& config_continue.ymisiheny to wanch man@ workflows_prod.ymworkflows_qa.ymlworkflows_gai.ymlworkflows_staging.ymlworkflows.subenv.vml>C.curson>D2.aithub>@.sonarlin>@.vscode>@,windsunvbapp>êa Actionsv_ componentêa AcAction temsBActvityActvitvAnalvtcJlAct vitysearchEAlACTVITVIVOGelae wewneQD AskAnythingmTntoemeventeewhnuthinectomotsan.esocweton SanesnooteltlimnouMAWSBillingManagementIMCachdCoachingFeedbackMeountnMGietamorAnlMnatshaed-waaooên DateTime0 DealRisks0 ElasticSearchCoocTOOI-Windov100% K52- • Wed 27 May 15:44:28nockw•jiminny.phphav otodieton=emcustom.lolaravel.log XSF fiminny@localhost*HSJJocal jiminny(localhost•console (PROD)erocieuconsole [STAGINGocctonelstracr.5yp0s-2nwsonce wihny servcostiNUUUANNAHHHANGACass eXKeLaySeruCepublic function -constructetexterelay isonabortunless ftle exi sts scredentais)code: 472outeny assianment"GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):AAAA* Fetch the latest messages since the last suncpublic function syncO: arraySnailbox = config(key: "jiminny.google_text_user');SexpectedAlias = config( key: "jiminny-deploy_region') === 'eu" ? 'catch-all-eu' : 'catch-all'Coxonctedhost a contzal xoy"jiminny-google text_host');Log:: info( message: "(TextRelayService) Starting sync', "nazloox Swarlooxexpecreo auras sexpecrednclasPXOPCIPONOSE L SOXOPCKOOHOSTSsenvice = Sthis->getService(Snailbox)essaoehstoryansosoestonyesemrmressaoeossfoneach (SnessageHistory as Shistonies) ?Snessages = Shistonies-snessagesAdded 22 (1:foreach (Snessages as Snessage) ?Snessnoeid=smessage-sneseaoeo>desthis-siesortunnentanwinonmentsserwico.SmhilboxSncssao0idSexocctedAsne.SexoectechostCnolnvortoyt=Toytoolau..rhonaltcoc 'email provider id', Snessageld)-›firstO:...
|
NULL
|
-2988103446961275196
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormProinet vvapov circiedv oackend-code= .env PhpStormProinet vvapov circiedv oackend-code= .env.staging•, Dockerfileastarsh→Trontendeemo→ workaracodea worker-video-codecontavmll& config_continue.ymisiheny to wanch man@ workflows_prod.ymworkflows_qa.ymlworkflows_gai.ymlworkflows_staging.ymlworkflows.subenv.vml>C.curson>D2.aithub>@.sonarlin>@.vscode>@,windsunvbapp>êa Actionsv_ componentêa AcAction temsBActvityActvitvAnalvtcJlAct vitysearchEAlACTVITVIVOGelae wewneQD AskAnythingmTntoemeventeewhnuthinectomotsan.esocweton SanesnooteltlimnouMAWSBillingManagementIMCachdCoachingFeedbackMeountnMGietamorAnlMnatshaed-waaooên DateTime0 DealRisks0 ElasticSearchCoocTOOI-Windov100% K52- • Wed 27 May 15:44:28nockw•jiminny.phphav otodieton=emcustom.lolaravel.log XSF fiminny@localhost*HSJJocal jiminny(localhost•console (PROD)erocieuconsole [STAGINGocctonelstracr.5yp0s-2nwsonce wihny servcostiNUUUANNAHHHANGACass eXKeLaySeruCepublic function -constructetexterelay isonabortunless ftle exi sts scredentais)code: 472outeny assianment"GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):AAAA* Fetch the latest messages since the last suncpublic function syncO: arraySnailbox = config(key: "jiminny.google_text_user');SexpectedAlias = config( key: "jiminny-deploy_region') === 'eu" ? 'catch-all-eu' : 'catch-all'Coxonctedhost a contzal xoy"jiminny-google text_host');Log:: info( message: "(TextRelayService) Starting sync', "nazloox Swarlooxexpecreo auras sexpecrednclasPXOPCIPONOSE L SOXOPCKOOHOSTSsenvice = Sthis->getService(Snailbox)essaoehstoryansosoestonyesemrmressaoeossfoneach (SnessageHistory as Shistonies) ?Snessages = Shistonies-snessagesAdded 22 (1:foreach (Snessages as Snessage) ?Snessnoeid=smessage-sneseaoeo>desthis-siesortunnentanwinonmentsserwico.SmhilboxSncssao0idSexocctedAsne.SexoectechostCnolnvortoyt=Toytoolau..rhonaltcoc 'email provider id', Snessageld)-›firstO:...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78600
|
2757
|
43
|
2026-05-27T12:44:25.846726+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885865846_m1.jpg...
|
PhpStorm
|
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Pause
Add Configuration
Run
Debug
More Actions
Sea Pause
Add Configuration
Run
Debug
More Actions
Search Everywhere
IDE and Project Settings
Project
Project
Options
Hide...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Pause","depth":2,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"","depth":2,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Add Configuration","depth":6,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run","depth":6,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug","depth":6,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
6804518770846856398
|
-7877704448579900465
|
visual_change
|
hybrid
|
NULL
|
Pause
Add Configuration
Run
Debug
More Actions
Sea Pause
Add Configuration
Run
Debug
More Actions
Search Everywhere
IDE and Project Settings
Project
Project
Options
Hide
FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% С8• Wed 27 May 15:44:25DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)edanowner.skipping...docker_lamp_1I TeamTestsalesforce auto sync (2c2e652e-1cbb-4620-852d-e73bef0ab4a9) is not yet assignedan owner.skipping...docker_1amp_1I Team Bullhorn (83c14120-cdb1-42e9-b0ac-16ef11320a8f) is not yet assigned anowner.skipping...docker_lamp_1I Team Globo Tech (fb8d5211-3c4d-4804-9223-b091670ffd79) is not yet assignedan owner.skipping...docker_lamp_1I Team Laravel11Company 2024 (780c6836-764b-4e47-9a05-cfefbab6e590) isnotyet assigned an owner.skipping.docker_lamp_1I Team Nikon7 (e9bff902-edc3-4b0b-89b1-2a9aa43d940a) is not yetassignedan owner.skipping...docker_lamp_1I Syncing objectsclient (1ece66c8-feb1-4df1-b321-21607daf4623) since 2026-05-27 06:44:27 (delay: 14s)docker_1amp_1docker_lamp_1• '/usr/local/bin/php' 'artisan'crm: sync-objects > '/proc/1/fd/1' 2>&1dockerlamp_1docker_1amp_1docker_lamp_1run_artisan_schedule: Done waiting for schedule:run2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:15 Jiminny (Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_1ING2026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjects15.19ms DONEdocker_1amp_12026-05-27 12:44:23 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:25 Jiminny\Jobs\Crm\SyncObjects53.92ms DONEDOCKER (docker-compose)screenpipe"0 84-zsh85...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] T3 EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run 'do-release-upgrade' to upgrade to it.***System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)T6 FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTEND17EXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ПEXTENSIONView in Docker Desktopo View ConfigView Logsw Enable Watchd Detach...
|
78598
|
NULL
|
NULL
|
NULL
|
|
78599
|
2758
|
45
|
2026-05-27T12:44:25.032854+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885865032_m2.jpg...
|
PhpStorm
|
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormEdiViewCoocRefactorRunToolsWindovHelp•Text PhpStormEdiViewCoocRefactorRunToolsWindovHelp•TextRelayService.phpTextRelayServiceTest.phpjiminny.php env.production100% 142• Wed 27 May 15:44:24...
|
NULL
|
8618592722766156689
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormEdiViewCoocRefactorRunToolsWindovHelp•Text PhpStormEdiViewCoocRefactorRunToolsWindovHelp•TextRelayService.phpTextRelayServiceTest.phpjiminny.php env.production100% 142• Wed 27 May 15:44:24...
|
78597
|
NULL
|
NULL
|
NULL
|
|
78598
|
2757
|
42
|
2026-05-27T12:44:22.668687+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885862668_m1.jpg...
|
PhpStorm
|
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Firefox FileEditViewHistoryBookmarksProfilesToolsD Firefox FileEditViewHistoryBookmarksProfilesToolsDOCKER₴81DEV (docker)₴2-zsh11DOCKER (docker-compose)nedskipping...docker_lamp_1I Syncing objects forGL 500 (0c33bf2d-1c77-4200-8ed6-6147ad444c30) since 2026-02-19 13:26:04 (delay: 12s)docker_1amp_1I Team Loren X (243d7d4b-1849-46c2-9dfb-4462f52020ef) is not yet assigned anskipping...docker_lamp_1I Team Laravel Company 2024 (e466d657-c26d-4281-9ed5-73890fe711f6) is not yetassigned an owner.docker_lamp_1skipping...I Team Barbara Fuchs (bea0fcf3-f8f9-471d-92c4-d1b7d1a2e228) is not yet assignedanowner.skipping….docker_lamp_1I Team Test salesforce auto sync (t yet assigned an owner. skipping...docker_lamp_1I Team Bullhorn (83c14120-cdb1-42e!owner.skipping...docker_lamp_1I Team Globo Tech (fb8d5211-3c4d-41an owner.skipping...PhpStormdocker_lamp_1I Team Laravel 11 Company 2024 (7862026.1yet assigned an owner.docker_lamp_1skipping..1 Team Nikon7 (e9bff902-edc3-4b0b-1wner.skipping...docker_lamp_1I Syncing objects for Dev Zoho CRM23) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11s DONEdocker_lamp_11 '/usr/local/bin/php' 'artisardocker_1amp_1docker_lamp_1docker_1amp_1run_artisan_schedule: Done waitir2026-05-27 12:44:15 Jiminny\JotINGL JETBRAINS IDESdocker_lamp_12026-05-27 12:44:15 Jiminny\JotONEdocker_lamp_12026-05-27 12:44:17 Jiminny\JolINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_1amp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny (Jobs\Crm\SyncObjects15.19ms DONEWindowHelp‹$0DOCKER (docker-compose)883screenpipe"O ₴4-zsh85...ip-10-30-129-190:~ (nc)XIPROD (ssh)S[URL_WITH_CREDENTIALS] Ma- bas 120:25 5 2026 from 212.5.253.37X T3 EU (-zsh)100% <78• Wed 27 May 15:44:22181886...-10-30-140-255:~ (-zsh)$7PROD5 from 212.5.153.87Loop: send disconnect: Broken pipenny ~ $ [to it.STAGE5 from 212.5.153.87lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTEND17EXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
-7716147609782626616
|
NULL
|
visual_change
|
ocr
|
NULL
|
Firefox FileEditViewHistoryBookmarksProfilesToolsD Firefox FileEditViewHistoryBookmarksProfilesToolsDOCKER₴81DEV (docker)₴2-zsh11DOCKER (docker-compose)nedskipping...docker_lamp_1I Syncing objects forGL 500 (0c33bf2d-1c77-4200-8ed6-6147ad444c30) since 2026-02-19 13:26:04 (delay: 12s)docker_1amp_1I Team Loren X (243d7d4b-1849-46c2-9dfb-4462f52020ef) is not yet assigned anskipping...docker_lamp_1I Team Laravel Company 2024 (e466d657-c26d-4281-9ed5-73890fe711f6) is not yetassigned an owner.docker_lamp_1skipping...I Team Barbara Fuchs (bea0fcf3-f8f9-471d-92c4-d1b7d1a2e228) is not yet assignedanowner.skipping….docker_lamp_1I Team Test salesforce auto sync (t yet assigned an owner. skipping...docker_lamp_1I Team Bullhorn (83c14120-cdb1-42e!owner.skipping...docker_lamp_1I Team Globo Tech (fb8d5211-3c4d-41an owner.skipping...PhpStormdocker_lamp_1I Team Laravel 11 Company 2024 (7862026.1yet assigned an owner.docker_lamp_1skipping..1 Team Nikon7 (e9bff902-edc3-4b0b-1wner.skipping...docker_lamp_1I Syncing objects for Dev Zoho CRM23) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_11s DONEdocker_lamp_11 '/usr/local/bin/php' 'artisardocker_1amp_1docker_lamp_1docker_1amp_1run_artisan_schedule: Done waitir2026-05-27 12:44:15 Jiminny\JotINGL JETBRAINS IDESdocker_lamp_12026-05-27 12:44:15 Jiminny\JotONEdocker_lamp_12026-05-27 12:44:17 Jiminny\JolINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_1amp_12026-05-27 12:44:19 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:20 Jiminny\Jobs\Crm\SyncObjects1s DONEdocker_lamp_12026-05-27 12:44:21 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:21 Jiminny (Jobs\Crm\SyncObjects15.19ms DONEWindowHelp‹$0DOCKER (docker-compose)883screenpipe"O ₴4-zsh85...ip-10-30-129-190:~ (nc)XIPROD (ssh)S[URL_WITH_CREDENTIALS] Ma- bas 120:25 5 2026 from 212.5.253.37X T3 EU (-zsh)100% <78• Wed 27 May 15:44:22181886...-10-30-140-255:~ (-zsh)$7PROD5 from 212.5.153.87Loop: send disconnect: Broken pipenny ~ $ [to it.STAGE5 from 212.5.153.87lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTEND17EXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktop@ View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78597
|
2758
|
44
|
2026-05-27T12:44:21.902389+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885861902_m2.jpg...
|
PhpStorm
|
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormCoocToolsWindovHelp100% 142 Wed 27 May 15: PhpStormCoocToolsWindovHelp100% 142 Wed 27 May 15:44:21Cearch svenuhere houhieNtasiloseeRecent Files 9ENavigation Bar. TKDrop files here to open them...
|
NULL
|
-3705579491201923781
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormCoocToolsWindovHelp100% 142 Wed 27 May 15: PhpStormCoocToolsWindovHelp100% 142 Wed 27 May 15:44:21Cearch svenuhere houhieNtasiloseeRecent Files 9ENavigation Bar. TKDrop files here to open them...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78596
|
2757
|
41
|
2026-05-27T12:44:19.438694+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885859438_m1.jpg...
|
PhpStorm
|
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <78• Wed 27 May 15:44:19DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)ssigned anowner.skipping...docker_lamp_11 Team New Org Test (2cb527b6-73a4-46be-b7b2-b0097b494cc5) is not yet assigneskipping...docker_1amp_1I Team Pipedrive test org (18ea22be-6e0b-461c-a4db-536c022aac73) is not yet aan owner. skipping...docker_lamp_1I Team BigChairs Inc.(16dcfaf9-44b4-4cc2-9ead-f98dd0cad4dd) is not yet assigskipping...docker_lamp_1I Syncing objectsGL 500 (0c33bf2d-1c77-4200-8ed6-6147ad444c30)6-02-19 13:26:04 (delay:docker_lamp_1I Team Loren X (243d7d4b-1849-46c2•owner.skipping...docker_lamp_1I Team LaravelCompany 2024 (e466dfassigned an owner.skipping...docker_1amp_1I Team Barbara Fuchs (bea0fcf3-f8f!ed an owner.skipping…..PhpStormdocker_lamp_1I Team Test salesforce auto sync (i2026.1t yet assigned an owner.skipping...docker_lamp_1I Team Bullhorn (83c14120-cdb1-42e!owner. skipping...docker_lamp_1I Team Globo Tech (fb8d5211-3c4d-41an owner.skipping...docker_lamp_1I Team Laravel 11 Company 2024 (786yet assigned an owner.skipping..docker_1amp_1I Team Nikon7 (e9bff902-edc3-4b0b-1wner. skipping...docker_lamp_1I Syncingobjects for Dev Zoho CRML JETBRAINS IDES23) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_1[PASSWORD_DOTS]1s DONEdocker_lamp_1• '/usr/local/bin/php' 'artisardocker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waitiny .urSLIICUULC.IUI2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_1amp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny (Jobs\Crm\SyncObjectsRUNNINGDOCKER (docker-compose)screenpipe"О 84-zsh85...ip-10-30-129-190:~ (nc)XIPROD (ssh)S[URL_WITH_CREDENTIALS] Ma- bas 120:25 5 2026 from 212.5.253.87X T3 EU (-zsh)5 from 212.5.153.87loop: send disconnect: Broken pipenny ~ $ [to it.5 from 212.5.153.87lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktopo View ConfigView Logsw Enable Watchd Detach...
|
NULL
|
8459914188409927458
|
NULL
|
visual_change
|
ocr
|
NULL
|
FirefoxFileEditViewHistoryBookmarksProfilesToolsWi FirefoxFileEditViewHistoryBookmarksProfilesToolsWindowHelp‹$0100% <78• Wed 27 May 15:44:19DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)ssigned anowner.skipping...docker_lamp_11 Team New Org Test (2cb527b6-73a4-46be-b7b2-b0097b494cc5) is not yet assigneskipping...docker_1amp_1I Team Pipedrive test org (18ea22be-6e0b-461c-a4db-536c022aac73) is not yet aan owner. skipping...docker_lamp_1I Team BigChairs Inc.(16dcfaf9-44b4-4cc2-9ead-f98dd0cad4dd) is not yet assigskipping...docker_lamp_1I Syncing objectsGL 500 (0c33bf2d-1c77-4200-8ed6-6147ad444c30)6-02-19 13:26:04 (delay:docker_lamp_1I Team Loren X (243d7d4b-1849-46c2•owner.skipping...docker_lamp_1I Team LaravelCompany 2024 (e466dfassigned an owner.skipping...docker_1amp_1I Team Barbara Fuchs (bea0fcf3-f8f!ed an owner.skipping…..PhpStormdocker_lamp_1I Team Test salesforce auto sync (i2026.1t yet assigned an owner.skipping...docker_lamp_1I Team Bullhorn (83c14120-cdb1-42e!owner. skipping...docker_lamp_1I Team Globo Tech (fb8d5211-3c4d-41an owner.skipping...docker_lamp_1I Team Laravel 11 Company 2024 (786yet assigned an owner.skipping..docker_1amp_1I Team Nikon7 (e9bff902-edc3-4b0b-1wner. skipping...docker_lamp_1I Syncingobjects for Dev Zoho CRML JETBRAINS IDES23) since 2026-05-27 06:44:27 (delay: 14s)docker_lamp_1[PASSWORD_DOTS]1s DONEdocker_lamp_1• '/usr/local/bin/php' 'artisardocker_lamp_1docker_lamp_1docker_lamp_1run_artisan_schedule: Done waitiny .urSLIICUULC.IUI2026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_1amp_12026-05-27 12:44:15 Jiminny\Jobs\Crm\SyncObjects35.79ms DONEdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjectsRUNNINGdocker_lamp_12026-05-27 12:44:17 Jiminny\Jobs\Crm\SyncObjects31.09ms DONEdocker_lamp_12026-05-27 12:44:19 Jiminny (Jobs\Crm\SyncObjectsRUNNINGDOCKER (docker-compose)screenpipe"О 84-zsh85...ip-10-30-129-190:~ (nc)XIPROD (ssh)S[URL_WITH_CREDENTIALS] Ma- bas 120:25 5 2026 from 212.5.253.87X T3 EU (-zsh)5 from 212.5.153.87loop: send disconnect: Broken pipenny ~ $ [to it.5 from 212.5.153.87lukas®Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktopo View ConfigView Logsw Enable Watchd Detach...
|
78593
|
NULL
|
NULL
|
NULL
|
|
78595
|
2758
|
43
|
2026-05-27T12:44:18.720813+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885858720_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStorm~ Google GeminiPipelines - jiminny/app7 (J PhpStorm~ Google GeminiPipelines - jiminny/app7 (JY-19958) Upgrado BE librariesiminmhoo/uckencucode.vnn1 NVD - CVe-2026-61044. NVD -CV0-2028-6722* NVD - cve-2026-726113 NVD - CVe-2025-14179Hohm wnt es dent tied inMedium vulnerabilities identifieoLow winerabilities identified inplYoorAlom cmnars told toCloudWntch lussoast.2JY-20915 fix strict casting by La!JY-20963 fix deleted obiect imosSevenShores)Hubspot|Exceptions• Lukas Kovalik - Time OffIimomtooin I SalaataredJiminaExceptionslEmailActiv XTtot mascaon from 087 787 8118— Now TabGemini 3.1 Pro ~hignligntingTo make your log files colorful and much easier to read, the best approach is to install a dedicatedlog-highlighting plugin.Here is how to set it up:Method 1: Use the "Ideolog" Plugin (Recommended)Ideolog is the officially supported JetBrains plugin for log files. It automatically highlights log levelslNre, WakwiNg. txkek and allows vou to cick on stack traces.1 Open your IDE Settings/Preferences:macOS: Cmd+Windows/Linux: Ctrl + Alt +sNavigate to Plugins in the left sidebar.Select the Marketplace tab at the top.Search for Ideolog.Click Install and then Restart IDE if prompted.Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravellogs) and color-code the INFO, ERROR, and DEBUG tags.Note: If the colors don't apply automatically, you can customize the log patterns by going to Settings> Editor > Log Highlighting (Ideolog).Method 2: Use the "Grep Console" PluginIf you also want to colorize the live output in your terminal or run/debug consoles, Grep Console isanother highly popular option.Go to Settings > Plugins > Marketplace.Search for Grep Console.Click Install and restart.Ask GeminiYor lim now chate thn" uend to imntoy our modale Camioie Alit cao mata mttrkae co donbld chachit Yoir mracy & CaminiB7e0+Summarize page08SecanoIssues / APP-15X9Jiminny\Exceptions\EmailActivityImportException1(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedapo/Services/Mall nooxService,ono inJiminny Services Mallinoox semice-orocess EmallactivitResolveArchiveoouconorooucdoneeSince First Seen (4 days) vQ Fitter events...wentMay 22 9.00 PMMay 23 9.00 PMalaMay 24 9.00 PMmollanhMay 25 9:00 PMevensy in thisissueID: 130a78022 hours ago JSONphp 8.5.5AlLnux 641164-196.303.9m202026.39rch64-839020 productionv Highlightshandledseveeerrov Stack TraceUnere are s chained exceptions in this eventsiminnySxcentions.EmallActiviyimoortSxceotion(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedoener/app/Services/Mai/InbaxService.php:491 in Jiminny|Services /MailUnboxService-processEmailActivity486487489* Any tvoe of import exceotion wt be urapoed in Enat Activity coort Exceotton* Those exceptions will be passed to Sentry, to be rewiened and resolved.* Too many exceptions were ignored and missed already493throw new EnatlActivityInportException(inboxEna1lId: SinboxEnail->getid().previous: SeinboxEnat?Object Jiminny\Models\InboxEna1l(#125695762)May 26 9.00 PMTrace: Trace ID1574 89416handledView all tags100% Linux 6.1164-196.3-doon yes© Copy as -Xumntor Hiabliahts Stack Trach43c323954(7343069abfo45614d4adfdol nicalauCopy as -@ InApol300%L2Vicoc/ woy 10:44:10A Ask Seer 3C /Events (total65Users (90d)Priority al~Assionee UnassnedLast seen 2. hours agoinreesse oysyuaFirst seen 4 days agov Seer Autofix €Meet Seer, your Al assistantDebug faster with Sentry's agent,Seer. Seer connects to vour reposscans your issues. highlights quickeveh intecfote with yountevonkagent to imolement chances in codelE Try out Seer nowv Issue TrackindO GtHubJiraAdd a comment.Marroas hich onioriSimilar IssuesMeraed Issues...
|
NULL
|
4872570280190239933
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStorm~ Google GeminiPipelines - jiminny/app7 (J PhpStorm~ Google GeminiPipelines - jiminny/app7 (JY-19958) Upgrado BE librariesiminmhoo/uckencucode.vnn1 NVD - CVe-2026-61044. NVD -CV0-2028-6722* NVD - cve-2026-726113 NVD - CVe-2025-14179Hohm wnt es dent tied inMedium vulnerabilities identifieoLow winerabilities identified inplYoorAlom cmnars told toCloudWntch lussoast.2JY-20915 fix strict casting by La!JY-20963 fix deleted obiect imosSevenShores)Hubspot|Exceptions• Lukas Kovalik - Time OffIimomtooin I SalaataredJiminaExceptionslEmailActiv XTtot mascaon from 087 787 8118— Now TabGemini 3.1 Pro ~hignligntingTo make your log files colorful and much easier to read, the best approach is to install a dedicatedlog-highlighting plugin.Here is how to set it up:Method 1: Use the "Ideolog" Plugin (Recommended)Ideolog is the officially supported JetBrains plugin for log files. It automatically highlights log levelslNre, WakwiNg. txkek and allows vou to cick on stack traces.1 Open your IDE Settings/Preferences:macOS: Cmd+Windows/Linux: Ctrl + Alt +sNavigate to Plugins in the left sidebar.Select the Marketplace tab at the top.Search for Ideolog.Click Install and then Restart IDE if prompted.Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravellogs) and color-code the INFO, ERROR, and DEBUG tags.Note: If the colors don't apply automatically, you can customize the log patterns by going to Settings> Editor > Log Highlighting (Ideolog).Method 2: Use the "Grep Console" PluginIf you also want to colorize the live output in your terminal or run/debug consoles, Grep Console isanother highly popular option.Go to Settings > Plugins > Marketplace.Search for Grep Console.Click Install and restart.Ask GeminiYor lim now chate thn" uend to imntoy our modale Camioie Alit cao mata mttrkae co donbld chachit Yoir mracy & CaminiB7e0+Summarize page08SecanoIssues / APP-15X9Jiminny\Exceptions\EmailActivityImportException1(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedapo/Services/Mall nooxService,ono inJiminny Services Mallinoox semice-orocess EmallactivitResolveArchiveoouconorooucdoneeSince First Seen (4 days) vQ Fitter events...wentMay 22 9.00 PMMay 23 9.00 PMalaMay 24 9.00 PMmollanhMay 25 9:00 PMevensy in thisissueID: 130a78022 hours ago JSONphp 8.5.5AlLnux 641164-196.303.9m202026.39rch64-839020 productionv Highlightshandledseveeerrov Stack TraceUnere are s chained exceptions in this eventsiminnySxcentions.EmallActiviyimoortSxceotion(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedoener/app/Services/Mai/InbaxService.php:491 in Jiminny|Services /MailUnboxService-processEmailActivity486487489* Any tvoe of import exceotion wt be urapoed in Enat Activity coort Exceotton* Those exceptions will be passed to Sentry, to be rewiened and resolved.* Too many exceptions were ignored and missed already493throw new EnatlActivityInportException(inboxEna1lId: SinboxEnail->getid().previous: SeinboxEnat?Object Jiminny\Models\InboxEna1l(#125695762)May 26 9.00 PMTrace: Trace ID1574 89416handledView all tags100% Linux 6.1164-196.3-doon yes© Copy as -Xumntor Hiabliahts Stack Trach43c323954(7343069abfo45614d4adfdol nicalauCopy as -@ InApol300%L2Vicoc/ woy 10:44:10A Ask Seer 3C /Events (total65Users (90d)Priority al~Assionee UnassnedLast seen 2. hours agoinreesse oysyuaFirst seen 4 days agov Seer Autofix €Meet Seer, your Al assistantDebug faster with Sentry's agent,Seer. Seer connects to vour reposscans your issues. highlights quickeveh intecfote with yountevonkagent to imolement chances in codelE Try out Seer nowv Issue TrackindO GtHubJiraAdd a comment.Marroas hich onioriSimilar IssuesMeraed Issues...
|
78594
|
NULL
|
NULL
|
NULL
|
|
78594
|
2758
|
42
|
2026-05-27T12:44:15.635776+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885855635_m2.jpg...
|
Firefox
|
Jiminny\Exceptions\EmailActivityImportException: [ Jiminny\Exceptions\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app — Work...
|
1
|
jiminny.sentry.io/issues/7502251930/?environment=p jiminny.sentry.io/issues/7502251930/?environment=production&environment=production-eu&project=82419&query=is%3Aunresolved&referrer=issue-stream...
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Platform Sprint 5 Q2 - Platform Team - Scrum Board Platform Sprint 5 Q2 - Platform Team - Scrum Board - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Unnamed Group
[JY-19958] Upgrade BE libraries - May - Jira
[JY-19958] Upgrade BE libraries - May - Jira
jiminny/app/backend-code - Vanta
jiminny/app/backend-code - Vanta
NVD - cve-2026-6104
NVD - cve-2026-6104
NVD - cve-2026-6722
NVD - cve-2026-6722
NVD - cve-2026-7261
NVD - cve-2026-7261
NVD - cve-2025-14179
NVD - cve-2025-14179
High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
[JY-20613] Allow owner's role to be selected when setting up a trial - Jira
[JY-20613] Allow owner's role to be selected when setting up a trial - Jira
Text relay
TypeError: Jiminny\Services\Mail\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app
TypeError: Jiminny\Services\Mail\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app
CloudWatch | us-east-2
CloudWatch | us-east-2
JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app
JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app
JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app
JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
Lukas Kovalik - Time Off
Lukas Kovalik - Time Off
Jiminny
Jiminny
Login | Salesforce
Login | Salesforce
Jiminny\Exceptions\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app
Jiminny\Exceptions\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app
Close tab
Text message from 087 787 8118 - [EMAIL] - Jiminny Mail
Text message from 087 787 8118 - [EMAIL] - Jiminny Mail
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
Main menu
Open mode picker, currently 3.1 Pro
Gemini
3.1 Pro
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Show the uploaded image in a lightbox
You said how to make log file colorful
You said
how to make log file colorful
Copy prompt
Edit
Gemini said
Gemini said
Based on your screenshot, you are using a JetBrains IDE (like PhpStorm, given the
laravel.log
file). By default, JetBrains IDEs treat
.log
files as plain text, which is why they lack syntax highlighting.
To make your log files colorful and much easier to read, the best approach is to install a dedicated log-highlighting plugin.
Here is how to set it up:
Method 1: Use the "Ideolog" Plugin (Recommended)
Method 1: Use the "Ideolog" Plugin (Recommended)
Ideolog
is the officially supported JetBrains plugin for log files. It automatically highlights log levels (INFO, WARNING, ERROR) and allows you to click on stack traces.
Open your IDE Settings/Preferences:
macOS:
Cmd
+
,
Windows/Linux:
Ctrl
+
Alt
+
S
Navigate to
Plugins
in the left sidebar.
Select the
Marketplace
tab at the top.
Search for
Ideolog
.
Click
Install
and then
Restart IDE
if prompted.
Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravel logs) and color-code the
INFO
,
ERROR
, and
DEBUG
tags.
Note: If the colors don't apply automatically, you can customize the log patterns by going to
Settings > Editor > Log Highlighting (Ideolog)
.
Method 2: Use the "Grep Console" Plugin
Method 2: Use the "Grep Console" Plugin
If you also want to colorize the live output in your terminal or run/debug consoles,
Grep Console
is another highly popular option.
Go to
Settings > Plugins > Marketplace
.
Search for
Grep Console
.
Click
Install
and restart.
Once installed, you can right-click inside your log file or console and select
Grep Console Settings
to define specific colors for specific keywords (e.g., make any line containing
local.INFO
green, and
local.ERROR
red).
Quick Built-in Fix (No Plugins)
Quick Built-in Fix (No Plugins)
If you don't want to install plugins, you can force the IDE to read the log as a different file type with basic highlighting, though it won't be as effective:
Open
Settings > Editor > File Types
.
Find a format that has highlighting you like (e.g.,
Properties
or
YAML
).
Add
*.log
to the "File name patterns" list for that type.
(Warning: This applies that syntax globally to all log files).
Good response
Bad response
Redo
Share & export
Copy
Show more options
Ask Gemini
Ask Gemini
Upload & tools
Microphone
Send message
Your Jiminny chats aren’t used to improve our models. Gemini is AI. It can make mistakes, so double check it.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to main content
Skip to main content
Toggle organization menu
Issues
Issues
Explore
Explore
Dashboards
Dashboards
Monitors
Monitors
Settings
Settings
Try Business
What's New
Help
[EMAIL]
Issues
Expand
Feed
Feed
Errors & Outages
Errors & Outages
Breached Metrics
Breached Metrics
Warnings
Warnings
User Feedback
User Feedback
Autofix
Autofix
Recently Run
Recently Run
All Views
All Views
Configure
Alerts Moved
Alerts
Moved
Issues
Issues
View Project Details
APP-1FX9
Ask Seer
Ask Seer
/
Give Feedback
Jiminny\Exceptions\EmailActivityImportException
View events
Events (total)
Users (90d)
Level: Error
[Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed
65
0
New
/app/Services/Mail/InboxService.php in Jiminny\Services\Mail\InboxService::processEmailActivity
Resolve
Resolve
More resolve options
Archive
Archive
Archive options
Subscribe
Share
More Actions
Priority
Modify issue priority
High
Assignee
Modify issue assignee
Unassigned
production, production-eu
production, production-eu
Since First Seen (4 days)
Since First Seen (
4 days
)
Add a search term
Add a search term
Close sidebar
Toggle graph series - Events
Events
65
Toggle graph series - Users
Users
0
release 57% 893416
release
57%
893416
environment 100% production
environment
100%
production
os 100% Linux 6.1.164-196.303.amzn2023.aarch64
os
100%
Linux 6.1.164-196.303.amzn2023.aarch64
handled 100% yes
handled
100%
yes
View all tags
View all tags
Select issue content
Events
Previous Event
Next Event
First
First
First
Latest
Latest
Latest
Recommended
Recommended
View More Events
View More Events
Copy as
Copy as
ID: 130a7802
2 hours ago
JSON
JSON
Highlights
Highlights
Stack Trace
Stack Trace
Trace
Trace
Tags
Tags
Context...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Platform Sprint 5 Q2 - Platform Team - Scrum Board - Jira","depth":4,"bounds":{"left":0.0018284575,"top":0.0518755,"width":0.038065158,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira","depth":4,"bounds":{"left":0.039893616,"top":0.0518755,"width":0.037898935,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Pipelines - jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.09497207,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Pipelines - jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.10614525,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Unnamed Group","depth":4,"bounds":{"left":0.0028257978,"top":0.13288109,"width":0.007978723,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXRadioButton","text":"[JY-19958] Upgrade BE libraries - May - Jira","depth":4,"bounds":{"left":0.0028257978,"top":0.15642458,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-19958] Upgrade BE libraries - May - Jira","depth":5,"bounds":{"left":0.015957447,"top":0.16759777,"width":0.07762633,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"jiminny/app/backend-code - Vanta","depth":4,"bounds":{"left":0.0028257978,"top":0.18914606,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"jiminny/app/backend-code - Vanta","depth":5,"bounds":{"left":0.015957447,"top":0.20031923,"width":0.059674203,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"NVD - cve-2026-6104","depth":4,"bounds":{"left":0.0028257978,"top":0.22186752,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NVD - cve-2026-6104","depth":5,"bounds":{"left":0.015957447,"top":0.2330407,"width":0.039228722,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"NVD - cve-2026-6722","depth":4,"bounds":{"left":0.0028257978,"top":0.254589,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NVD - cve-2026-6722","depth":5,"bounds":{"left":0.015957447,"top":0.26576218,"width":0.03939495,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"NVD - cve-2026-7261","depth":4,"bounds":{"left":0.0028257978,"top":0.28731045,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NVD - cve-2026-7261","depth":5,"bounds":{"left":0.015957447,"top":0.29848364,"width":0.038896278,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"NVD - cve-2025-14179","depth":4,"bounds":{"left":0.0028257978,"top":0.3200319,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"NVD - cve-2025-14179","depth":5,"bounds":{"left":0.015957447,"top":0.3312051,"width":0.04055851,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":4,"bounds":{"left":0.0028257978,"top":0.3527534,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":5,"bounds":{"left":0.015957447,"top":0.3639266,"width":0.13813165,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":4,"bounds":{"left":0.0028257978,"top":0.38547486,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":5,"bounds":{"left":0.015957447,"top":0.39664805,"width":0.14378324,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":4,"bounds":{"left":0.0028257978,"top":0.41819632,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta","depth":5,"bounds":{"left":0.015957447,"top":0.4293695,"width":0.13696809,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"[JY-20613] Allow owner's role to be selected when setting up a trial - Jira","depth":4,"bounds":{"left":0.0,"top":0.4509178,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"[JY-20613] Allow owner's role to be selected when setting up a trial - Jira","depth":5,"bounds":{"left":0.013297873,"top":0.46209097,"width":0.12799202,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Text relay","depth":4,"bounds":{"left":0.0028257978,"top":0.4888268,"width":0.020279255,"height":0.01915403},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXRadioButton","text":"TypeError: Jiminny\\Services\\Mail\\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app","depth":4,"bounds":{"left":0.0028257978,"top":0.5123703,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"TypeError: Jiminny\\Services\\Mail\\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app","depth":5,"bounds":{"left":0.015957447,"top":0.5235435,"width":0.38879654,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"CloudWatch | us-east-2","depth":4,"bounds":{"left":0.0028257978,"top":0.5450918,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"CloudWatch | us-east-2","depth":5,"bounds":{"left":0.015957447,"top":0.55626494,"width":0.04138963,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app","depth":4,"bounds":{"left":0.0028257978,"top":0.57781327,"width":0.07679521,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app","depth":5,"bounds":{"left":0.015957447,"top":0.58898646,"width":0.1278258,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app","depth":4,"bounds":{"left":0.0,"top":0.6105347,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app","depth":5,"bounds":{"left":0.013297873,"top":0.6217079,"width":0.14245346,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"SevenShores\\Hubspot\\Exceptions\\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {\"status\":\"error\",\"message\":\"You have reached your secondly limit.\",\"errorType\":\"RATE_LIMIT","depth":4,"bounds":{"left":0.0,"top":0.6432562,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"SevenShores\\Hubspot\\Exceptions\\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {\"status\":\"error\",\"message\":\"You have reached your secondly limit.\",\"errorType\":\"RATE_LIMIT","depth":5,"bounds":{"left":0.013297873,"top":0.6544294,"width":0.4644282,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Lukas Kovalik - Time Off","depth":4,"bounds":{"left":0.0,"top":0.67597765,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Lukas Kovalik - Time Off","depth":5,"bounds":{"left":0.013297873,"top":0.68715084,"width":0.042220745,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny","depth":4,"bounds":{"left":0.0,"top":0.7086991,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny","depth":5,"bounds":{"left":0.013297873,"top":0.7198723,"width":0.013131649,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Login | Salesforce","depth":4,"bounds":{"left":0.0,"top":0.74142057,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Login | Salesforce","depth":5,"bounds":{"left":0.013297873,"top":0.75259376,"width":0.030917553,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Jiminny\\Exceptions\\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app","depth":4,"bounds":{"left":0.0,"top":0.7741421,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Jiminny\\Exceptions\\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app","depth":5,"bounds":{"left":0.013297873,"top":0.7853152,"width":0.24301861,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Close tab","depth":5,"bounds":{"left":0.06732048,"top":0.7813248,"width":0.007978723,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"Text message from 087 787 8118 - lukas.kovalik@jiminny.com - Jiminny Mail","depth":4,"bounds":{"left":0.0,"top":0.80686355,"width":0.07962101,"height":0.032721467},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Text message from 087 787 8118 - lukas.kovalik@jiminny.com - Jiminny Mail","depth":5,"bounds":{"left":0.013297873,"top":0.81803674,"width":0.13248006,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Tab","depth":4,"bounds":{"left":0.0028257978,"top":0.84118116,"width":0.07413564,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Customize sidebar","depth":6,"bounds":{"left":0.0028257978,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Close Google Gemini (⌃X)","depth":6,"bounds":{"left":0.013796543,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Tabs from other devices","depth":6,"bounds":{"left":0.024933511,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open history (⇧⌘H)","depth":6,"bounds":{"left":0.036070477,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Open bookmarks (⌘B)","depth":6,"bounds":{"left":0.04720745,"top":0.97007185,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"AI Chat settings","depth":3,"bounds":{"left":0.35854387,"top":0.055067837,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":3,"bounds":{"left":0.37051198,"top":0.055067837,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Main menu","depth":5,"bounds":{"left":0.08228058,"top":0.09736632,"width":0.015957447,"height":0.03830806},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open mode picker, currently 3.1 Pro","depth":6,"bounds":{"left":0.09823803,"top":0.10694334,"width":0.047539894,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Gemini","depth":13,"bounds":{"left":0.1022274,"top":0.10853951,"width":0.017121011,"height":0.016360734},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"3.1 Pro","depth":11,"bounds":{"left":0.12084442,"top":0.10853951,"width":0.013796543,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"New Chat","depth":5,"bounds":{"left":0.35854387,"top":0.10215483,"width":0.011968086,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Open menu for conversation actions.","depth":5,"bounds":{"left":0.37051198,"top":0.10215483,"width":0.011968086,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Conversation with Gemini","depth":7,"bounds":{"left":0.079288565,"top":0.14445332,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Conversation with Gemini","depth":8,"bounds":{"left":0.079288565,"top":0.14684756,"width":0.1200133,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Show the uploaded image in a lightbox","depth":13,"bounds":{"left":0.32413563,"top":0.0,"width":0.03723404,"height":0.08938547},"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"You said how to make log file colorful","depth":13,"bounds":{"left":0.28257978,"top":0.033918597,"width":0.06948138,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"You said","depth":15,"bounds":{"left":0.27293882,"top":0.03431764,"width":0.020279255,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"how to make log file colorful","depth":15,"bounds":{"left":0.28257978,"top":0.035115723,"width":0.06948138,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy prompt","depth":12,"bounds":{"left":0.3307846,"top":0.07222666,"width":0.011968086,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Edit","depth":12,"bounds":{"left":0.34275267,"top":0.07222666,"width":0.011968086,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXHeading","text":"Gemini said","depth":12,"bounds":{"left":0.10837766,"top":0.10335196,"width":0.0003324468,"height":0.0007980846},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Gemini said","depth":13,"bounds":{"left":0.10837766,"top":0.105347164,"width":0.04105718,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Based on your screenshot, you are using a JetBrains IDE (like PhpStorm, given the","depth":16,"bounds":{"left":0.111369684,"top":0.105347164,"width":0.20046543,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"laravel.log","depth":17,"bounds":{"left":0.31382978,"top":0.10694334,"width":0.032912236,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"file). By default, JetBrains IDEs treat","depth":16,"bounds":{"left":0.111369684,"top":0.105347164,"width":0.23853059,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".log","depth":17,"bounds":{"left":0.2017952,"top":0.12609737,"width":0.011968086,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"files as plain text, which is why they lack syntax highlighting.","depth":16,"bounds":{"left":0.111369684,"top":0.1245012,"width":0.22140957,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"To make your log files colorful and much easier to read, the best approach is to install a dedicated log-highlighting plugin.","depth":16,"bounds":{"left":0.111369684,"top":0.17557861,"width":0.24035904,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Here is how to set it up:","depth":16,"bounds":{"left":0.111369684,"top":0.22665602,"width":0.057347074,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Method 1: Use the \"Ideolog\" Plugin (Recommended)","depth":15,"bounds":{"left":0.111369684,"top":0.27653632,"width":0.24734043,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Method 1: Use the \"Ideolog\" Plugin (Recommended)","depth":16,"bounds":{"left":0.111369684,"top":0.27613726,"width":0.15109707,"height":0.020351157},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ideolog","depth":16,"bounds":{"left":0.111369684,"top":0.30327216,"width":0.019448139,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is the officially supported JetBrains plugin for log files. It automatically highlights log levels (INFO, WARNING, ERROR) and allows you to click on stack traces.","depth":16,"bounds":{"left":0.111369684,"top":0.30327216,"width":0.24318483,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open your IDE Settings/Preferences:","depth":18,"bounds":{"left":0.124667555,"top":0.35434955,"width":0.08976064,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"macOS:","depth":20,"bounds":{"left":0.1377992,"top":0.3830806,"width":0.020113032,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Cmd","depth":21,"bounds":{"left":0.16107048,"top":0.38467678,"width":0.008976064,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":20,"bounds":{"left":0.17204122,"top":0.3830806,"width":0.0056515955,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":",","depth":21,"bounds":{"left":0.1796875,"top":0.38467678,"width":0.0029920214,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Windows/Linux:","depth":20,"bounds":{"left":0.1377992,"top":0.41181165,"width":0.040392287,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ctrl","depth":21,"bounds":{"left":0.18151596,"top":0.41340783,"width":0.011968086,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":20,"bounds":{"left":0.19547872,"top":0.41181165,"width":0.005485372,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Alt","depth":21,"bounds":{"left":0.20295878,"top":0.41340783,"width":0.008976064,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"+","depth":20,"bounds":{"left":0.21392952,"top":0.41181165,"width":0.0056515955,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"S","depth":21,"bounds":{"left":0.2215758,"top":0.41340783,"width":0.0029920214,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Navigate to","depth":18,"bounds":{"left":0.124667555,"top":0.4405427,"width":0.029587766,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Plugins","depth":18,"bounds":{"left":0.15425532,"top":0.4405427,"width":0.01861702,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"in the left sidebar.","depth":18,"bounds":{"left":0.17287233,"top":0.4405427,"width":0.04504654,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Select the","depth":18,"bounds":{"left":0.124667555,"top":0.46927375,"width":0.025930852,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Marketplace","depth":18,"bounds":{"left":0.1505984,"top":0.46927375,"width":0.032413565,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"tab at the top.","depth":18,"bounds":{"left":0.18301196,"top":0.46927375,"width":0.035904255,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search for","depth":18,"bounds":{"left":0.124667555,"top":0.4980048,"width":0.026595745,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Ideolog","depth":18,"bounds":{"left":0.1512633,"top":0.4980048,"width":0.019448139,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":18,"bounds":{"left":0.17071144,"top":0.4980048,"width":0.0013297872,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click","depth":18,"bounds":{"left":0.124667555,"top":0.52673584,"width":0.013297873,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Install","depth":18,"bounds":{"left":0.13796543,"top":0.52673584,"width":0.015458777,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and then","depth":18,"bounds":{"left":0.1534242,"top":0.52673584,"width":0.024268618,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Restart IDE","depth":18,"bounds":{"left":0.17769282,"top":0.52673584,"width":0.028424202,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"if prompted.","depth":18,"bounds":{"left":0.20611702,"top":0.52673584,"width":0.032081116,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravel logs) and color-code the","depth":16,"bounds":{"left":0.111369684,"top":0.5586592,"width":0.23803191,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"INFO","depth":17,"bounds":{"left":0.17486702,"top":0.5794094,"width":0.011968086,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":",","depth":16,"bounds":{"left":0.1888298,"top":0.57781327,"width":0.002493351,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ERROR","depth":17,"bounds":{"left":0.19331782,"top":0.5794094,"width":0.014960106,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":", and","depth":16,"bounds":{"left":0.21027261,"top":0.57781327,"width":0.013131649,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"DEBUG","depth":17,"bounds":{"left":0.22539894,"top":0.5794094,"width":0.014960106,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"tags.","depth":16,"bounds":{"left":0.24235372,"top":0.57781327,"width":0.013464096,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Note: If the colors don't apply automatically, you can customize the log patterns by going to","depth":16,"bounds":{"left":0.111369684,"top":0.6097366,"width":0.2252327,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings > Editor > Log Highlighting (Ideolog)","depth":16,"bounds":{"left":0.111369684,"top":0.6097366,"width":0.24734043,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":16,"bounds":{"left":0.20412233,"top":0.62889063,"width":0.0013297872,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Method 2: Use the \"Grep Console\" Plugin","depth":15,"bounds":{"left":0.111369684,"top":0.67877096,"width":0.24734043,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Method 2: Use the \"Grep Console\" Plugin","depth":16,"bounds":{"left":0.111369684,"top":0.6783719,"width":0.11951463,"height":0.020351157},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If you also want to colorize the live output in your terminal or run/debug consoles,","depth":16,"bounds":{"left":0.111369684,"top":0.7055068,"width":0.20046543,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Grep Console","depth":16,"bounds":{"left":0.3118351,"top":0.7055068,"width":0.03523936,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"is another highly popular option.","depth":16,"bounds":{"left":0.111369684,"top":0.7055068,"width":0.24202128,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Go to","depth":18,"bounds":{"left":0.124667555,"top":0.7565842,"width":0.01512633,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings > Plugins > Marketplace","depth":18,"bounds":{"left":0.13979389,"top":0.7565842,"width":0.08377659,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":18,"bounds":{"left":0.22357048,"top":0.7565842,"width":0.0013297872,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Search for","depth":18,"bounds":{"left":0.124667555,"top":0.7853152,"width":0.026595745,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Grep Console","depth":18,"bounds":{"left":0.1512633,"top":0.7853152,"width":0.03507314,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":18,"bounds":{"left":0.18633644,"top":0.7853152,"width":0.0013297872,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Click","depth":18,"bounds":{"left":0.124667555,"top":0.81404626,"width":0.013297873,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Install","depth":18,"bounds":{"left":0.13796543,"top":0.81404626,"width":0.015458777,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"and restart.","depth":18,"bounds":{"left":0.1534242,"top":0.81404626,"width":0.029753989,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Once installed, you can right-click inside your log file or console and select","depth":18,"bounds":{"left":0.124667555,"top":0.8427773,"width":0.18351063,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Grep Console Settings","depth":18,"bounds":{"left":0.124667555,"top":0.8427773,"width":0.21991356,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to define specific colors for specific keywords (e.g., make any line containing","depth":18,"bounds":{"left":0.14594415,"top":0.8619314,"width":0.19065824,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"local.INFO","depth":19,"bounds":{"left":0.12666224,"top":0.88268155,"width":0.029920213,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"green, and","depth":18,"bounds":{"left":0.15857713,"top":0.8810854,"width":0.028756648,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"local.ERROR","depth":19,"bounds":{"left":0.18932846,"top":0.88268155,"width":0.032912236,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"red).","depth":18,"bounds":{"left":0.22423537,"top":0.8810854,"width":0.012466756,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXHeading","text":"Quick Built-in Fix (No Plugins)","depth":15,"bounds":{"left":0.111369684,"top":0.93096566,"width":0.24734043,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"heading","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Quick Built-in Fix (No Plugins)","depth":16,"bounds":{"left":0.111369684,"top":0.93056667,"width":0.08577128,"height":0.020351157},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"If you don't want to install plugins, you can force the IDE to read the log as a different file type with basic highlighting, though it won't be as effective:","depth":16,"bounds":{"left":0.111369684,"top":0.9577015,"width":0.24168883,"height":0.03631285},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Open","depth":18,"bounds":{"left":0.124667555,"top":1.0,"width":0.01512633,"height":-0.00877893},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Settings > Editor > File Types","depth":18,"bounds":{"left":0.13979389,"top":1.0,"width":0.07330452,"height":-0.00877893},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":".","depth":18,"bounds":{"left":0.2130984,"top":1.0,"width":0.0013297872,"height":-0.00877893},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Find a format that has highlighting you like (e.g.,","depth":18,"bounds":{"left":0.124667555,"top":1.0,"width":0.11818484,"height":-0.03750992},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Properties","depth":19,"bounds":{"left":0.24484707,"top":1.0,"width":0.029920213,"height":-0.03910613},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"or","depth":18,"bounds":{"left":0.27676198,"top":1.0,"width":0.0076462766,"height":-0.03750992},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"YAML","depth":19,"bounds":{"left":0.2864029,"top":1.0,"width":0.011968086,"height":-0.03910613},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":").","depth":18,"bounds":{"left":0.3003657,"top":1.0,"width":0.0031582448,"height":-0.03750992},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Add","depth":18,"bounds":{"left":0.124667555,"top":1.0,"width":0.011303191,"height":-0.066241026},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"*.log","depth":19,"bounds":{"left":0.13796543,"top":1.0,"width":0.014960106,"height":-0.06783724},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"to the \"File name patterns\" list for that type.","depth":18,"bounds":{"left":0.1549202,"top":1.0,"width":0.10920878,"height":-0.066241026},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"(Warning: This applies that syntax globally to all log files).","depth":18,"bounds":{"left":0.124667555,"top":1.0,"width":0.22273937,"height":-0.066241026},"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXCheckBox","text":"Good response","depth":14,"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXCheckBox","text":"Bad response","depth":14,"on_screen":false,"help_text":"","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Redo","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Share & export","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Copy","depth":14,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Show more options","depth":13,"on_screen":false,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXTextArea","text":"Ask Gemini","depth":13,"bounds":{"left":0.13131648,"top":0.830008,"width":0.20345744,"height":0.01915403},"on_screen":true,"value":"Ask Gemini","help_text":"","role_description":"text entry area","subrole":"AXUnknown","is_enabled":true,"is_focused":true,"is_selected":false},{"role":"AXStaticText","text":"Ask Gemini","depth":14,"bounds":{"left":0.13198139,"top":0.8308061,"width":0.028756648,"height":0.01715882},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Upload & tools","depth":12,"bounds":{"left":0.12865691,"top":0.858739,"width":0.013297873,"height":0.031923383},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Microphone","depth":12,"bounds":{"left":0.32613033,"top":0.86352754,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Send message","depth":12,"bounds":{"left":0.32613033,"top":0.86552274,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your Jiminny chats aren’t used to improve our models. Gemini is AI. It can make mistakes, so double check it.","depth":9,"bounds":{"left":0.102726065,"top":0.9173983,"width":0.21775267,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Your privacy & Gemini Opens in a new window","depth":9,"bounds":{"left":0.32047874,"top":0.9173983,"width":0.043882977,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Your privacy & Gemini","depth":10,"bounds":{"left":0.32047874,"top":0.9173983,"width":0.043882977,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Opens in a new window","depth":11,"bounds":{"left":0.079288565,"top":0.91660017,"width":0.04720745,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Summarize page","depth":3,"bounds":{"left":0.08494016,"top":0.95730245,"width":0.053523935,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Summarize page","depth":5,"bounds":{"left":0.09059176,"top":0.96249,"width":0.042220745,"height":0.015163607},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Skip to main content","depth":3,"on_screen":false,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Skip to main content","depth":4,"on_screen":false,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Toggle organization menu","depth":6,"bounds":{"left":0.3961104,"top":0.059856344,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Issues","depth":7,"bounds":{"left":0.390625,"top":0.09736632,"width":0.021609042,"height":0.050678372},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Issues","depth":9,"bounds":{"left":0.3962766,"top":0.13048683,"width":0.010305851,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Explore","depth":7,"bounds":{"left":0.390625,"top":0.14804469,"width":0.021609042,"height":0.050678372},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Explore","depth":9,"bounds":{"left":0.39544547,"top":0.1811652,"width":0.011968086,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Dashboards","depth":7,"bounds":{"left":0.390625,"top":0.19872306,"width":0.021609042,"height":0.05027933},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Dashboards","depth":9,"bounds":{"left":0.39178857,"top":0.23184358,"width":0.019281914,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Monitors","depth":7,"bounds":{"left":0.390625,"top":0.2490024,"width":0.021609042,"height":0.050678372},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Monitors","depth":9,"bounds":{"left":0.39444813,"top":0.2821229,"width":0.013962766,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Settings","depth":7,"bounds":{"left":0.390625,"top":0.29968077,"width":0.021609042,"height":0.050678372},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Settings","depth":9,"bounds":{"left":0.39461437,"top":0.33280128,"width":0.013630319,"height":0.009976057},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Try Business","depth":5,"bounds":{"left":0.3961104,"top":0.88667196,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"What's New","depth":5,"bounds":{"left":0.3961104,"top":0.9114126,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Help","depth":5,"bounds":{"left":0.3961104,"top":0.93615323,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"lukas.kovalik@jiminny.com","depth":5,"bounds":{"left":0.3961104,"top":0.9680766,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Issues","depth":8,"bounds":{"left":0.35272607,"top":0.066640064,"width":0.014461436,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Expand","depth":8,"bounds":{"left":0.39827126,"top":0.061452515,"width":0.00930851,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Feed","depth":10,"bounds":{"left":0.3494016,"top":0.10055866,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Feed","depth":12,"bounds":{"left":0.3537234,"top":0.10734238,"width":0.010638298,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Errors & Outages","depth":10,"bounds":{"left":0.3494016,"top":0.14046289,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Errors & Outages","depth":12,"bounds":{"left":0.3537234,"top":0.14724661,"width":0.03673537,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Breached Metrics","depth":10,"bounds":{"left":0.3494016,"top":0.16759777,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Breached Metrics","depth":12,"bounds":{"left":0.3537234,"top":0.17438148,"width":0.037898935,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Warnings","depth":10,"bounds":{"left":0.3494016,"top":0.19473264,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Warnings","depth":12,"bounds":{"left":0.3537234,"top":0.20151636,"width":0.019946808,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"User Feedback","depth":10,"bounds":{"left":0.3494016,"top":0.22186752,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"User Feedback","depth":12,"bounds":{"left":0.3537234,"top":0.22865124,"width":0.032081116,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Autofix","depth":8,"bounds":{"left":0.3494016,"top":0.26177174,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Autofix","depth":11,"bounds":{"left":0.35339096,"top":0.26855546,"width":0.016289894,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Recently Run","depth":10,"bounds":{"left":0.3494016,"top":0.28731045,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Recently Run","depth":12,"bounds":{"left":0.3537234,"top":0.29409418,"width":0.028922873,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"All Views","depth":10,"bounds":{"left":0.3494016,"top":0.3272147,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"All Views","depth":12,"bounds":{"left":0.3537234,"top":0.3339984,"width":0.019281914,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Configure","depth":9,"bounds":{"left":0.35339096,"top":0.3735036,"width":0.021941489,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Alerts Moved","depth":10,"bounds":{"left":0.3494016,"top":0.39225858,"width":0.058843084,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Alerts","depth":12,"bounds":{"left":0.3537234,"top":0.3990423,"width":0.012799202,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Moved","depth":12,"bounds":{"left":0.39012632,"top":0.39984038,"width":0.012466756,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"Issues","depth":7,"bounds":{"left":0.4192154,"top":0.06464485,"width":0.013796543,"height":0.015961692},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Issues","depth":9,"bounds":{"left":0.4192154,"top":0.066640064,"width":0.013796543,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"View Project Details","depth":8,"bounds":{"left":0.4396609,"top":0.06624102,"width":0.005319149,"height":0.012769354},"on_screen":true,"role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"APP-1FX9","depth":11,"bounds":{"left":0.4476396,"top":0.066640064,"width":0.02144282,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Ask Seer","depth":5,"bounds":{"left":0.9350067,"top":0.059856344,"width":0.04720745,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Ask Seer","depth":8,"bounds":{"left":0.94630986,"top":0.0650439,"width":0.019614361,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/","depth":9,"bounds":{"left":0.97423536,"top":0.065442935,"width":0.0021609042,"height":0.011971269},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Give Feedback","depth":6,"bounds":{"left":0.98420876,"top":0.059856344,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Jiminny\\Exceptions\\EmailActivityImportException","depth":8,"bounds":{"left":0.4192154,"top":0.10295291,"width":0.16439494,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"View events","depth":8,"bounds":{"left":0.9411569,"top":0.10654429,"width":0.026097074,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Events (total)","depth":9,"bounds":{"left":0.9411569,"top":0.10654429,"width":0.026097074,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Users (90d)","depth":8,"bounds":{"left":0.97257316,"top":0.10654429,"width":0.022273935,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Level: Error","depth":10,"bounds":{"left":0.41888297,"top":0.12490024,"width":0.02443484,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"[Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed","depth":9,"bounds":{"left":0.42220744,"top":0.12490024,"width":0.15458776,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"65","depth":8,"bounds":{"left":0.95927525,"top":0.12210695,"width":0.007978723,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":8,"bounds":{"left":0.9906915,"top":0.12210695,"width":0.004155585,"height":0.017557861},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"New","depth":9,"bounds":{"left":0.4192154,"top":0.14046289,"width":0.009474734,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"/app/Services/Mail/InboxService.php in Jiminny\\Services\\Mail\\InboxService::processEmailActivity","depth":8,"bounds":{"left":0.43550533,"top":0.14046289,"width":0.21509309,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Resolve","depth":7,"bounds":{"left":0.4192154,"top":0.16719872,"width":0.02543218,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Resolve","depth":9,"bounds":{"left":0.42320478,"top":0.17238627,"width":0.017453458,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"More resolve options","depth":7,"bounds":{"left":0.44431517,"top":0.16719872,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Archive","depth":7,"bounds":{"left":0.45628324,"top":0.16719872,"width":0.025265958,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Archive","depth":9,"bounds":{"left":0.4602726,"top":0.17238627,"width":0.017287234,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Archive options","depth":7,"bounds":{"left":0.48121676,"top":0.16719872,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Subscribe","depth":7,"bounds":{"left":0.49318483,"top":0.16719872,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Share","depth":7,"bounds":{"left":0.50515294,"top":0.16719872,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"More Actions","depth":7,"bounds":{"left":0.517121,"top":0.16719872,"width":0.010638298,"height":0.025538707},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Priority","depth":7,"bounds":{"left":0.90076464,"top":0.17398244,"width":0.015957447,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Modify issue priority","depth":7,"bounds":{"left":0.91805184,"top":0.17039107,"width":0.013962766,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"High","depth":12,"bounds":{"left":0.9250333,"top":0.18076617,"width":0.00880984,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Assignee","depth":7,"bounds":{"left":0.93733376,"top":0.17398244,"width":0.019780586,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Modify issue assignee","depth":8,"bounds":{"left":0.9584442,"top":0.16999201,"width":0.036402926,"height":0.01915403},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Unassigned","depth":11,"bounds":{"left":0.96675533,"top":0.17398244,"width":0.021775266,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXMenuButton","text":"production, production-eu","depth":8,"bounds":{"left":0.4192154,"top":0.20949721,"width":0.07363697,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"menu button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"production, production-eu","depth":12,"bounds":{"left":0.42320478,"top":0.21628092,"width":0.059674203,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Since First Seen (4 days)","depth":8,"bounds":{"left":0.49251994,"top":0.20949721,"width":0.069148935,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Since First Seen (","depth":12,"bounds":{"left":0.4965093,"top":0.21628092,"width":0.0390625,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"4 days","depth":12,"bounds":{"left":0.5355718,"top":0.21628092,"width":0.014461436,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":")","depth":12,"bounds":{"left":0.5500333,"top":0.21628092,"width":0.0016622341,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXComboBox","text":"Add a search term","depth":11,"bounds":{"left":0.5749667,"top":0.21428572,"width":0.2995346,"height":0.01915403},"on_screen":true,"help_text":"","placeholder":"Filter events…","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXComboBox","text":"Add a search term","depth":11,"bounds":{"left":0.5749667,"top":0.21428572,"width":0.2995346,"height":0.01915403},"on_screen":true,"help_text":"","placeholder":"Filter events…","role_description":"combo box","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close sidebar","depth":8,"bounds":{"left":0.8828125,"top":0.20949721,"width":0.011968086,"height":0.028731046},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Toggle graph series - Events","depth":7,"bounds":{"left":0.42353722,"top":0.25818038,"width":0.021276595,"height":0.035115723},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Events","depth":10,"bounds":{"left":0.4275266,"top":0.26256984,"width":0.013297873,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"65","depth":10,"bounds":{"left":0.43085107,"top":0.27693537,"width":0.0066489363,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Toggle graph series - Users","depth":7,"bounds":{"left":0.42353722,"top":0.2980846,"width":0.021276595,"height":0.035115723},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Users","depth":10,"bounds":{"left":0.42869017,"top":0.3008779,"width":0.010970744,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"0","depth":10,"bounds":{"left":0.4323471,"top":0.31524342,"width":0.0034906915,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"release 57% 893416","depth":7,"bounds":{"left":0.767121,"top":0.25818038,"width":0.11702128,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"release","depth":9,"bounds":{"left":0.7691157,"top":0.25977653,"width":0.013962766,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"57%","depth":9,"bounds":{"left":0.8334442,"top":0.25977653,"width":0.007978723,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"893416","depth":9,"bounds":{"left":0.84275264,"top":0.25977653,"width":0.013796543,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"environment 100% production","depth":7,"bounds":{"left":0.767121,"top":0.2725459,"width":0.11702128,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"environment","depth":9,"bounds":{"left":0.7691157,"top":0.273743,"width":0.024767287,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"100%","depth":9,"bounds":{"left":0.83111703,"top":0.273743,"width":0.010305851,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"production","depth":9,"bounds":{"left":0.84275264,"top":0.273743,"width":0.02044548,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"os 100% Linux 6.1.164-196.303.amzn2023.aarch64","depth":7,"bounds":{"left":0.767121,"top":0.2869114,"width":0.11702128,"height":0.0131683955},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"os","depth":9,"bounds":{"left":0.7691157,"top":0.28810853,"width":0.004488032,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"100%","depth":9,"bounds":{"left":0.83111703,"top":0.28810853,"width":0.010305851,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"Linux 6.1.164-196.303.amzn2023.aarch64","depth":9,"bounds":{"left":0.84275264,"top":0.28810853,"width":0.07712766,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"handled 100% yes","depth":7,"bounds":{"left":0.767121,"top":0.3008779,"width":0.11702128,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"handled","depth":9,"bounds":{"left":0.7691157,"top":0.30247405,"width":0.015458777,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"100%","depth":9,"bounds":{"left":0.83111703,"top":0.30247405,"width":0.010305851,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"yes","depth":9,"bounds":{"left":0.84275264,"top":0.30247405,"width":0.006482713,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"View all tags","depth":7,"bounds":{"left":0.7691157,"top":0.31763768,"width":0.027094414,"height":0.01556265},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"View all tags","depth":8,"bounds":{"left":0.7691157,"top":0.31923383,"width":0.027094414,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Select issue content","depth":8,"bounds":{"left":0.4192154,"top":0.34836394,"width":0.028922873,"height":0.025538707},"on_screen":true,"role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Events","depth":10,"bounds":{"left":0.42320478,"top":0.35434955,"width":0.01761968,"height":0.01396648},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Previous Event","depth":8,"bounds":{"left":0.7252327,"top":0.3499601,"width":0.00930851,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"Next Event","depth":8,"bounds":{"left":0.73454124,"top":0.3499601,"width":0.00930851,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":false,"is_focused":false,"is_selected":false},{"role":"AXRadioButton","text":"First","depth":9,"bounds":{"left":0.74617684,"top":0.3499601,"width":0.013630319,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"First","depth":10,"bounds":{"left":0.74617684,"top":0.3507582,"width":0.013630319,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"First","depth":12,"bounds":{"left":0.74883646,"top":0.3567438,"width":0.00831117,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Latest","depth":9,"bounds":{"left":0.76113695,"top":0.3499601,"width":0.017121011,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXLink","text":"Latest","depth":10,"bounds":{"left":0.76113695,"top":0.3507582,"width":0.017121011,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Latest","depth":12,"bounds":{"left":0.76379657,"top":0.3567438,"width":0.011801862,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXRadioButton","text":"Recommended","depth":9,"bounds":{"left":0.77958775,"top":0.3499601,"width":0.033410903,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"Recommended","depth":12,"bounds":{"left":0.78224736,"top":0.3567438,"width":0.028091755,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"View More Events","depth":8,"bounds":{"left":0.81432843,"top":0.3499601,"width":0.0390625,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"View More Events","depth":10,"bounds":{"left":0.81698805,"top":0.35514766,"width":0.03374335,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Copy as","depth":8,"bounds":{"left":0.8547208,"top":0.3499601,"width":0.03174867,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Copy as","depth":10,"bounds":{"left":0.86336434,"top":0.35514766,"width":0.01512633,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"ID: 130a7802","depth":10,"bounds":{"left":0.42353722,"top":0.38906625,"width":0.02925532,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXStaticText","text":"2 hours ago","depth":10,"bounds":{"left":0.46343085,"top":0.38906625,"width":0.025598405,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXLink","text":"JSON","depth":9,"bounds":{"left":0.49384972,"top":0.38826814,"width":0.012134309,"height":0.013567438},"on_screen":true,"help_text":"","role_description":"link","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"JSON","depth":10,"bounds":{"left":0.49384972,"top":0.38906625,"width":0.012134309,"height":0.012370312},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Highlights","depth":12,"bounds":{"left":0.77892286,"top":0.38387868,"width":0.024268618,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Highlights","depth":14,"bounds":{"left":0.7815825,"top":0.38986433,"width":0.018949468,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Stack Trace","depth":12,"bounds":{"left":0.8038564,"top":0.38387868,"width":0.026928192,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Stack Trace","depth":14,"bounds":{"left":0.80651593,"top":0.38986433,"width":0.021609042,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Trace","depth":12,"bounds":{"left":0.83144945,"top":0.38387868,"width":0.015292553,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Trace","depth":14,"bounds":{"left":0.83410907,"top":0.38986433,"width":0.009973404,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Tags","depth":12,"bounds":{"left":0.8474069,"top":0.38387868,"width":0.013962766,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Tags","depth":14,"bounds":{"left":0.8500665,"top":0.38986433,"width":0.008643617,"height":0.010774142},"on_screen":true,"help_text":"","role_description":"text","subrole":"AXUnknown"},{"role":"AXButton","text":"Context","depth":12,"bounds":{"left":0.86203456,"top":0.38387868,"width":0.020113032,"height":0.022346368},"on_screen":true,"help_text":"","role_description":"button","subrole":"AXUnknown","is_enabled":true,"is_focused":false,"is_selected":false}]...
|
-8683956518111518502
|
-5163553987964314986
|
visual_change
|
accessibility
|
NULL
|
Platform Sprint 5 Q2 - Platform Team - Scrum Board Platform Sprint 5 Q2 - Platform Team - Scrum Board - Jira
[JY-20915] Add environment-specific email domains for text relay to prevent duplicate processing - Jira
Pipelines - jiminny/app
Pipelines - jiminny/app
Unnamed Group
[JY-19958] Upgrade BE libraries - May - Jira
[JY-19958] Upgrade BE libraries - May - Jira
jiminny/app/backend-code - Vanta
jiminny/app/backend-code - Vanta
NVD - cve-2026-6104
NVD - cve-2026-6104
NVD - cve-2026-6722
NVD - cve-2026-6722
NVD - cve-2026-7261
NVD - cve-2026-7261
NVD - cve-2025-14179
NVD - cve-2025-14179
High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
High vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Medium vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
Low vulnerabilities identified in packages are addressed (GitHub Repo) - Vanta
[JY-20613] Allow owner's role to be selected when setting up a trial - Jira
[JY-20613] Allow owner's role to be selected when setting up a trial - Jira
Text relay
TypeError: Jiminny\Services\Mail\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app
TypeError: Jiminny\Services\Mail\TextRelayService::setHistoryPoint(): Argument #2 ($historyPoint) must be of type int, string given, called in /home/jiminny/app/Services/Mail/TextRelayService.php on line 118 — jiminny — app
CloudWatch | us-east-2
CloudWatch | us-east-2
JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app
JY-20915 fix strict casting by LakyLak · Pull Request #12134 · jiminny/app
JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app
JY-20963 fix deleted object import by LakyLak · Pull Request #12121 · jiminny/app
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
SevenShores\Hubspot\Exceptions\BadRequest: Client error: `POST https://api.hubapi.com/crm/v3/objects/contact/search` resulted in a `429 Too Many Requests` response: {"status":"error","message":"You have reached your secondly limit.","errorType":"RATE_LIMIT
Lukas Kovalik - Time Off
Lukas Kovalik - Time Off
Jiminny
Jiminny
Login | Salesforce
Login | Salesforce
Jiminny\Exceptions\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app
Jiminny\Exceptions\EmailActivityImportException: [Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed — jiminny — app
Close tab
Text message from 087 787 8118 - [EMAIL] - Jiminny Mail
Text message from 087 787 8118 - [EMAIL] - Jiminny Mail
New Tab
Customize sidebar
Close Google Gemini (⌃X)
Tabs from other devices
Open history (⇧⌘H)
Open bookmarks (⌘B)
AI Chat settings
Close
Main menu
Open mode picker, currently 3.1 Pro
Gemini
3.1 Pro
New Chat
Open menu for conversation actions.
Conversation with Gemini
Conversation with Gemini
Show the uploaded image in a lightbox
You said how to make log file colorful
You said
how to make log file colorful
Copy prompt
Edit
Gemini said
Gemini said
Based on your screenshot, you are using a JetBrains IDE (like PhpStorm, given the
laravel.log
file). By default, JetBrains IDEs treat
.log
files as plain text, which is why they lack syntax highlighting.
To make your log files colorful and much easier to read, the best approach is to install a dedicated log-highlighting plugin.
Here is how to set it up:
Method 1: Use the "Ideolog" Plugin (Recommended)
Method 1: Use the "Ideolog" Plugin (Recommended)
Ideolog
is the officially supported JetBrains plugin for log files. It automatically highlights log levels (INFO, WARNING, ERROR) and allows you to click on stack traces.
Open your IDE Settings/Preferences:
macOS:
Cmd
+
,
Windows/Linux:
Ctrl
+
Alt
+
S
Navigate to
Plugins
in the left sidebar.
Select the
Marketplace
tab at the top.
Search for
Ideolog
.
Click
Install
and then
Restart IDE
if prompted.
Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravel logs) and color-code the
INFO
,
ERROR
, and
DEBUG
tags.
Note: If the colors don't apply automatically, you can customize the log patterns by going to
Settings > Editor > Log Highlighting (Ideolog)
.
Method 2: Use the "Grep Console" Plugin
Method 2: Use the "Grep Console" Plugin
If you also want to colorize the live output in your terminal or run/debug consoles,
Grep Console
is another highly popular option.
Go to
Settings > Plugins > Marketplace
.
Search for
Grep Console
.
Click
Install
and restart.
Once installed, you can right-click inside your log file or console and select
Grep Console Settings
to define specific colors for specific keywords (e.g., make any line containing
local.INFO
green, and
local.ERROR
red).
Quick Built-in Fix (No Plugins)
Quick Built-in Fix (No Plugins)
If you don't want to install plugins, you can force the IDE to read the log as a different file type with basic highlighting, though it won't be as effective:
Open
Settings > Editor > File Types
.
Find a format that has highlighting you like (e.g.,
Properties
or
YAML
).
Add
*.log
to the "File name patterns" list for that type.
(Warning: This applies that syntax globally to all log files).
Good response
Bad response
Redo
Share & export
Copy
Show more options
Ask Gemini
Ask Gemini
Upload & tools
Microphone
Send message
Your Jiminny chats aren’t used to improve our models. Gemini is AI. It can make mistakes, so double check it.
Your privacy & Gemini Opens in a new window
Your privacy & Gemini
Opens in a new window
Summarize page
Summarize page
Skip to main content
Skip to main content
Toggle organization menu
Issues
Issues
Explore
Explore
Dashboards
Dashboards
Monitors
Monitors
Settings
Settings
Try Business
What's New
Help
[EMAIL]
Issues
Expand
Feed
Feed
Errors & Outages
Errors & Outages
Breached Metrics
Breached Metrics
Warnings
Warnings
User Feedback
User Feedback
Autofix
Autofix
Recently Run
Recently Run
All Views
All Views
Configure
Alerts Moved
Alerts
Moved
Issues
Issues
View Project Details
APP-1FX9
Ask Seer
Ask Seer
/
Give Feedback
Jiminny\Exceptions\EmailActivityImportException
View events
Events (total)
Users (90d)
Level: Error
[Email Import] Failed for InboxEmail ID: 125695762: Error: Request failed
65
0
New
/app/Services/Mail/InboxService.php in Jiminny\Services\Mail\InboxService::processEmailActivity
Resolve
Resolve
More resolve options
Archive
Archive
Archive options
Subscribe
Share
More Actions
Priority
Modify issue priority
High
Assignee
Modify issue assignee
Unassigned
production, production-eu
production, production-eu
Since First Seen (4 days)
Since First Seen (
4 days
)
Add a search term
Add a search term
Close sidebar
Toggle graph series - Events
Events
65
Toggle graph series - Users
Users
0
release 57% 893416
release
57%
893416
environment 100% production
environment
100%
production
os 100% Linux 6.1.164-196.303.amzn2023.aarch64
os
100%
Linux 6.1.164-196.303.amzn2023.aarch64
handled 100% yes
handled
100%
yes
View all tags
View all tags
Select issue content
Events
Previous Event
Next Event
First
First
First
Latest
Latest
Latest
Recommended
Recommended
View More Events
View More Events
Copy as
Copy as
ID: 130a7802
2 hours ago
JSON
JSON
Highlights
Highlights
Stack Trace
Stack Trace
Trace
Trace
Tags
Tags
Context...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78593
|
2757
|
40
|
2026-05-27T12:44:13.204191+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885853204_m1.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStormFileEditViewNavigateCodeLaravelRefactorRun PhpStormFileEditViewNavigateCodeLaravelRefactorRunToolsGitWindowHelp100% С8• Wed 27 May 15:44:12DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)docker_lamp_11 ('/usr/local/bin/php' 'artisan'mailbox:batch:retry-failed--max-batches=15 > '/proc/1/fd/1''/usr/local/bin/php' 'artisan'schedule: finish"framework/schedule-390defd641effba0f73a895e426ded4cf2ba7f11" "$?") › '/dev/null'docker_1amp_12026-05-27 12:43:10 Running ['artisan'calendar:sync --dateMode=daily]2026-05-2712:43:19 Jiminny\Jobs\Calendar\SyncCalendarEventsdocker_lamp_12026-05-27 12:43:20 Jiminny\Jobs\Calendar\SyncCalendarEventsDOCKER (docker-compose)screenpipe"O ₴4-zshX5...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-Kovaliks--MacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)t6FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ OPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktop@ View ConfigL View Logsw Enable Watchd Detach...
|
NULL
|
4811715311185580524
|
NULL
|
visual_change
|
ocr
|
NULL
|
PhpStormFileEditViewNavigateCodeLaravelRefactorRun PhpStormFileEditViewNavigateCodeLaravelRefactorRunToolsGitWindowHelp100% С8• Wed 27 May 15:44:12DOCKER₴81DEV (docker)₴2-zsh88311DOCKER (docker-compose)docker_lamp_11 ('/usr/local/bin/php' 'artisan'mailbox:batch:retry-failed--max-batches=15 > '/proc/1/fd/1''/usr/local/bin/php' 'artisan'schedule: finish"framework/schedule-390defd641effba0f73a895e426ded4cf2ba7f11" "$?") › '/dev/null'docker_1amp_12026-05-27 12:43:10 Running ['artisan'calendar:sync --dateMode=daily]2026-05-2712:43:19 Jiminny\Jobs\Calendar\SyncCalendarEventsdocker_lamp_12026-05-27 12:43:20 Jiminny\Jobs\Calendar\SyncCalendarEventsDOCKER (docker-compose)screenpipe"O ₴4-zshX5...ip-10-30-129-190:~ (nc)T2PROD (ssh)S[URL_WITH_CREDENTIALS] EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-Kovaliks--MacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)t6FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ OPRODSTAGEFRONTENDEXT (-zsh)ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONView in Docker Desktop@ View ConfigL View Logsw Enable Watchd Detach...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78592
|
2758
|
41
|
2026-05-27T12:44:12.575099+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885852575_m2.jpg...
|
iTerm2
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
rnostolv Gooc e Gemini© Pipelines - |iminnylapp7 ( rnostolv Gooc e Gemini© Pipelines - |iminnylapp7 (JY-19958) Upgrado BE librariesiminnhoo/tckend.code.Vnn1 NVD - CVe-2026-61041. NVD -Cv-2028-6722* NVD - cve-2026-726113 NVD - CVe-2025-14179Hohm wnt es dent tied inMedium vulnerabilities identifieoLow winerabilities identified inplYoorAlom cmnars told toCloudWntch luseonste2JY-20915 fix strict casting by La!JY-20963 fix deleted obiect imosSevenShores)Hubspot|Exceptions• Lukas Kovalik - Time Off8 Jiminrytooin I SalaataredJiminaExceptionslEmailActiv XM Text message from 087 787 8118— Now TabGemini 3.1 Pro ~hignligntingTo make your log files colorful and much easier to read, the best approach is to install a dedicatedlog-highlighting plugin.Here is how to set it up:Method 1: Use the "Ideolog" Plugin (Recommended)Ideolog is the officially supported JetBrains plugin for log files. It automatically highlights log levelslNre, WakwiNg. txkek and allows vou to cick on stack traces.1 Open your IDE Settings/Preferences:macOS: Cmd+Windows/Linux: Ctrl + Alt +sNavigate to Plugins in the left sidebar.Select the Marketplace tab at the top.Search for Ideolog.Click Install and then Restart IDE if prompted.Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravellogs) and color-code the INFO, ERROR, and DEBUG tags.Note: If the colors don't apply automatically, you can customize the log patterns by going to Settings> Editor > Log Highlighting (Ideolog).Method 2: Use the "Grep Console" PluginIf you also want to colorize the live output in your terminal or run/debug consoles, Grep Console isanother highly popular option.Go to Settings > Plugins > Marketplace.Search for Grep Console.Click Install and restart.Ask GeminiYor lim now chate thn" uend to imntoy our modale Camioie Alit cao mata mttrkae co donbld chachit Yoir mracy & CaminiB7e0+Summarize page08SecanoIssues / APP-15X9Jiminny\Exceptions\EmailActivityImportException1(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedapo/Services/Mall nooxService,ono inJiminny Services Mallinoox semice-orocess EmallactivitResolveArchiveoouconorooucdoneesince ristseendoaysyQ Fitter events...wentMay 22 9.00 PMMay 23 9.00 PMalaMay 24 9.00 PMmollanhMay 25 9:00 PMevensy in thisissueID: 130a7802an hour ago JSONphp 8.5.5AlLnux 641164-196.303.9m202026.39rch64-8349020 productionv Highlightshandledseveeerrov Stack TraceUnere are s chained exceptions in this eventsiminnySxcentions.EmallActiviyimoortSxceotion(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedoener/app/Services/Mai/InbaxService.php:491 in Jiminny|Services /MailUnboxService-processEmailActivity486487489* Any tvoe of import exceotion wt be urapoed in Enat Activity coort Exceotton* Those exceptions will be passed to Sentry, to be rewiened and resolved.* Too many exceptions were ignored and missed already493throw new EnatlActivityInportException(inboxEna1lId: SinboxEnail->getid().previous: SeinboxEnat?Object Jiminny\Models\InboxEna1l(#125695762)May 26 9.00 PMTrace: Trace ID1574 89416handledView all tags100% Linux 6.1.164-196.3.doon yes© Copy as -Xumntor Hiabliahts Stack Trach43c323954(7343069abfa45614d4adfdol nicalauCopy as -@ InApolD00% 12o vico c/ moy 10:44:1A Ask Seer 3C /Events (total65Users (90d)Priority al~Assionee UnassnedLast seen an hour agonrcesse oysyuaFirst seen 4 days agov Seer Autofix €MeSahr votr lneeictanDebug faster with Sentry's agent,Seer. Seer connects to vour reposscans your issues. highlights quickeveh intecfote with yountevonkagent to imolement chances in codelE Try out Seer nowv Issue TrackindO GtHubJiraAdd a comment.Marroas hich onioriSimilar IssuesMeraed Issues...
|
NULL
|
-4071871720425255471
|
NULL
|
visual_change
|
ocr
|
NULL
|
rnostolv Gooc e Gemini© Pipelines - |iminnylapp7 ( rnostolv Gooc e Gemini© Pipelines - |iminnylapp7 (JY-19958) Upgrado BE librariesiminnhoo/tckend.code.Vnn1 NVD - CVe-2026-61041. NVD -Cv-2028-6722* NVD - cve-2026-726113 NVD - CVe-2025-14179Hohm wnt es dent tied inMedium vulnerabilities identifieoLow winerabilities identified inplYoorAlom cmnars told toCloudWntch luseonste2JY-20915 fix strict casting by La!JY-20963 fix deleted obiect imosSevenShores)Hubspot|Exceptions• Lukas Kovalik - Time Off8 Jiminrytooin I SalaataredJiminaExceptionslEmailActiv XM Text message from 087 787 8118— Now TabGemini 3.1 Pro ~hignligntingTo make your log files colorful and much easier to read, the best approach is to install a dedicatedlog-highlighting plugin.Here is how to set it up:Method 1: Use the "Ideolog" Plugin (Recommended)Ideolog is the officially supported JetBrains plugin for log files. It automatically highlights log levelslNre, WakwiNg. txkek and allows vou to cick on stack traces.1 Open your IDE Settings/Preferences:macOS: Cmd+Windows/Linux: Ctrl + Alt +sNavigate to Plugins in the left sidebar.Select the Marketplace tab at the top.Search for Ideolog.Click Install and then Restart IDE if prompted.Once installed, Ideolog will automatically recognize standard timestamped logs (like your Laravellogs) and color-code the INFO, ERROR, and DEBUG tags.Note: If the colors don't apply automatically, you can customize the log patterns by going to Settings> Editor > Log Highlighting (Ideolog).Method 2: Use the "Grep Console" PluginIf you also want to colorize the live output in your terminal or run/debug consoles, Grep Console isanother highly popular option.Go to Settings > Plugins > Marketplace.Search for Grep Console.Click Install and restart.Ask GeminiYor lim now chate thn" uend to imntoy our modale Camioie Alit cao mata mttrkae co donbld chachit Yoir mracy & CaminiB7e0+Summarize page08SecanoIssues / APP-15X9Jiminny\Exceptions\EmailActivityImportException1(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedapo/Services/Mall nooxService,ono inJiminny Services Mallinoox semice-orocess EmallactivitResolveArchiveoouconorooucdoneesince ristseendoaysyQ Fitter events...wentMay 22 9.00 PMMay 23 9.00 PMalaMay 24 9.00 PMmollanhMay 25 9:00 PMevensy in thisissueID: 130a7802an hour ago JSONphp 8.5.5AlLnux 641164-196.303.9m202026.39rch64-8349020 productionv Highlightshandledseveeerrov Stack TraceUnere are s chained exceptions in this eventsiminnySxcentions.EmallActiviyimoortSxceotion(Email Import) Failed for InboxEmail ID: 125695762: Error: Request failedoener/app/Services/Mai/InbaxService.php:491 in Jiminny|Services /MailUnboxService-processEmailActivity486487489* Any tvoe of import exceotion wt be urapoed in Enat Activity coort Exceotton* Those exceptions will be passed to Sentry, to be rewiened and resolved.* Too many exceptions were ignored and missed already493throw new EnatlActivityInportException(inboxEna1lId: SinboxEnail->getid().previous: SeinboxEnat?Object Jiminny\Models\InboxEna1l(#125695762)May 26 9.00 PMTrace: Trace ID1574 89416handledView all tags100% Linux 6.1.164-196.3.doon yes© Copy as -Xumntor Hiabliahts Stack Trach43c323954(7343069abfa45614d4adfdol nicalauCopy as -@ InApolD00% 12o vico c/ moy 10:44:1A Ask Seer 3C /Events (total65Users (90d)Priority al~Assionee UnassnedLast seen an hour agonrcesse oysyuaFirst seen 4 days agov Seer Autofix €MeSahr votr lneeictanDebug faster with Sentry's agent,Seer. Seer connects to vour reposscans your issues. highlights quickeveh intecfote with yountevonkagent to imolement chances in codelE Try out Seer nowv Issue TrackindO GtHubJiraAdd a comment.Marroas hich onioriSimilar IssuesMeraed Issues...
|
78590
|
NULL
|
NULL
|
NULL
|
|
78591
|
2757
|
39
|
2026-05-27T12:44:10.069811+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885850069_m1.jpg...
|
PhpStorm
|
faVsco.js – laravel.log
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20915-fix-missing-head Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20915-fix-missing-header-text-relay, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20915-fix-missing-header-text-relay","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"TextRelayServiceTest","depth":6,"bounds":{"left":0.0,"top":0.0,"width":0.13125,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'TextRelayServiceTest'","depth":6,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.035555556},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-62456125971594122
|
-7627563921516060222
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20915-fix-missing-head Project: faVsco.js, menu
JY-20915-fix-missing-header-text-relay, menu
Start Listening for PHP Debug Connections
TextRelayServiceTest
Run 'TextRelayServiceTest'
Debug 'TextRelayServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpDOCKER₴81DEV (docker)₴2-zsh883DOCKER (docker-compose)screenpipe*84T2docker_lamp_1'/proc/1/fd/1'• '/usr/local/bin/php' 'artisan'mailbox:batch:process --max-batches=15 >docker_lamp_12026-05-27 12:43:10 Running ['artisan'mailbox:batch:retry-failedatches=15] in background2.83ms DONEdocker_lamp_1• ('/usr/local/bin/php' 'artisan'mailbox:batch:retry-faileds=15 > '/proc/1/fd/1' 2>&1 ; '/usr/local/bin/php' 'artisan'schedule: finish "framework/schedule-390defd641effba0f73a895e426ded4cf2ba7f11" "$?") > '/dev/null' 2>&1 &docker_lamp_12026-05-27 12:43:10Running ['artisan'calendar:sync --dateMode=daily]2026-05-27Jiminny\Jobs\Calendar\SyncCalendarEventsdocker_lamp_12026-05-27 12:43:20 Jiminny\Jobs\Calendar\SyncCalendarEvents2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEvents‹$085100% <8• Wed 27 May 15:44:09181886•..-10-30-140-255:~ (-zsh)$7-zsh...ip-10-30-129-190:~ (nc)[URL_WITH_CREDENTIALS] System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|docker_1amp_1docker_lamp_1docker_1amp_1docker_lamp_1 |docker_lamp_1docker_lamp_1docker_lamp_1docker_lamp_1docker_lamp_1docker_lamp_1docker_lamp_1docker_lamp_1docker_1amp_1docker_lamp_1/1/fd/1' 2>&1docker_lamp_1docker_lamp_11 '/usr/local/bin/php' 'artisan'calendar:sync --dateMode=daily › '/proc/Run 'do-release-upgrade' to upgrade to it.2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEvents378.18ms D2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEventsrun_artisan_schedule: Done waiting forschedule: run2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEventsSTAGESystem restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.872026-05-27 12:44:02 Running ['artisan' meeting-bot:schedule-bot] ... 1s D" '/usr/local/bin/php' 'artisan'meeting-bot:schedule-bot > */proc/1/fd/12026-05-27 12:44:03 Running ['artisan' dialers:monitor-activities] . 1s D, '/usr/local/bin/php' 'artisan' dialers:monitor-activities > '/proc/1/fd2026-05-27 12:44:04 Running ['artisan'jiminny:monitor-social-accounts]l '/usr/local/bin/php' 'artisan' jiminny:monitor-social-accounts › '/proc2026-05-27 12:44:07 Running ['artisan' mailbox:skip-lists:refresh] . 1s D1 '/usr/local/bin/php' 'artisan' mailbox:skip-lists:refresh › */proc/1/fdlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTENDukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ 0EXTENSIONV View in Docker Desktopo View ConfigL View Logsw Enable Watchd Detach...
|
78589
|
NULL
|
NULL
|
NULL
|
|
78590
|
2758
|
40
|
2026-05-27T12:44:09.781930+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885849781_m2.jpg...
|
PhpStorm
|
PhpStorm and Plugin Updates
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"PhpStorm and Plugin Updates","depth":1,"bounds":{"left":0.45844415,"top":0.28092578,"width":0.09740692,"height":0.014365523},"on_screen":true,"value":"PhpStorm and Plugin Updates","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"bounds":{"left":0.45844415,"top":0.28092578,"width":0.0674867,"height":0.014365523},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Restart PhpStorm to apply changes in plugins?","depth":1,"bounds":{"left":0.45844415,"top":0.30167598,"width":0.09740692,"height":0.013567438},"on_screen":true,"help_text":"text/html","role_description":"text"}]...
|
-2091754200813569337
|
6780522911901961476
|
click
|
hybrid
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?
PhpStormViewNeWENNCCoocCaravelKetdcioTOOl-Pwovscors$2 JY-20915-fix-npho l0005.ongpheo matl.criyPmoxo.ongPYlkowle"medd"sueamine.oneHwowke earonephp queue.phpsdlestorce.onesamconephp secure-headers.phgwpservices.ongppslack.ohephptimezones.ohgphp webhook-server.ohg> En contrit.→darabasrontcent>Ulangnode modtles hhrary toon→tnanstant mualiid>@ resourcesv hroutesphe api.phpphe api_v2.phpne concole nbophe customer_api.phpMoamtioooo.oneMo haalth obopupro cetco weo.oneMaweb cnopp weonook.one> scriptev(ln storage> O apo>@ debugbar> &a frameworkvMloasrcitionore0 audio wav= custom logOtexkehysece.ohpusonce wihny servcostwi16 @NUUAANNN= nubspocioumal-poullodcamnit xmFttieSEARESIESEGEMAASESSWindowphpljiminny.phphav otodietoeA1A10public function -_constructeScredentals = storage oathd pathetexterellay1sonlonouteny assianmen: 'GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):* Sareh the nnteet soceacas cinca the nner cuoemuhise funet son evne tt hanasSmailbox = config( key. "jiminny.google_text_user'):SexpectedAlias = config( key: "jiminny,deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all'SexpectedHost = config( key: "jiminny.google-text_host'):Log:: info( message: "[TextRelayService) Starting sync', 0"nazloox > Swarloox'expected alias' =› SexpectedAlias.PXOPCIPONOSE L SOXOPCKPCHOST1):seruces ensosreservetalookessaoehsoransosoetsoresenressaoeoseiforeachSnessanelsscony as Shistontes)Snessages = Shistonies-snessagesAdded 22 11:sthis-siesartunrentanwinonnentSsenwice.Smilbox.Sescaocid.SexocctedAsns.SexoectechosoCnolnvortout Toytoolaueerhoralt cotae lonst nnausdond CsoceanoldtseinethWed 27 May 15:44:09custom.loglaravel.logX& console (PROD)(2826-85-27 12:36:03) local.INFO: Jininny\Console\Comaands\Conand::run Memory usage before starting command {"connand":"meeting-bot:schedule-bot", "memoryBeforeComnandInMb":68.8, "memoryPeakBeforeConnandIn™b"2024-05.27 12-36-AR1 Rocal TMSA[ScheduleBotCommand) Dispatched activities to capture {"count":0} {"correlation_id":*dcf24093-4455-46d4-9282-4a2581ed1bc6" , "trace_id":*96d8832a-1985-4983-beSc-e9485c895aef"2826-85-27 12:36:031 local. INFOJininnylConsolelCommandsi Conmandkanun Momony usage fon conmand "command*:"mocting-boteschedule-bot"."menonyBefoneCommandTnMb":69.8."memonyAfitenConeandInMB":62.8,"поmоnyPoakв2826-85-27 12:36:051 local.INFOJanhy Contor Couho Cossaheun owonyusage before startingnd "comnand":"dialers:moniton-activities" "memoryßeforeCommandInMb":69.0.*semoryPeakBeforeConmandInMb12826-85-27 12:36:051 local.INF0: Jininny| Consolel Conmands\Connand::run Memory usage for connand «"command":"dialens:nonitor-activities" "nenoryBeforeCommandInMb":60.0. *menoryAfterComnandInMB":62.0. "memoryPea12826-85-27 12:36:061 1ocal.NOTTCE: Monitoning start{*correlation_id"."355a8191-fdda-4e9f-b2d4-5e002515214e* "trace_Sid":"6743c452-a029-4Sbd-8e47-cfabe28496d8"}(2826-85-27 12:36:061 1ocal.NOTTCE: Monitoning end ("cornelation_id"."355a8191-fdda-4e9f-b2d4-5e802515214e* *trace_id":*6743c452-a029-45bd-8e47-cfabe28496d8™[2826-85-27 12:36:08) local.INF0: Jininny\Console\Connands\Connand::run Memory usage before starting command {*comnand*."nailbox:skio-Lists-refresh" "nemoryßeforeComnandinMb":69.0, "memonyPeakBeforeConnandTnMb(2826-85-27 12:36:081 1ocal,INF0:РОПНАРОИКІСАТОССО КТОМД•НИМЛТИ ОМУШІЕООООН БОАВСІОІМЕ СУФФМ КРГПОБЄНИЙНПМОNЕОКОИОВООРЕРВ МУЛВСТИmandinMB*:62.8. "nenoryPea(2826-85-27 12:36:091 1ocal,TNFOJoinny. console cornands connand: "run hemory usage before starting command {"connand*."nailbox:batch:process" "nenoryßeforeCommandinMb":69.8,*nenoryPeakBeforeConnandinMb" :99.PhoStorm and Plugin UpdatesMlel FiNISHED batch process"orocessed":A} (*correlation_id"."833fa74S-4858-4d9e-643d-fe17976647af* "trace_1d"."13844bdf-1d76-4e15-9868-ebbRestart PhpStorm to apply changes in plugins?Fo tAtoranoa tonmano Racun lemony usadeon connano в шсоnmаnсыя пал нохясакстнолосаяяия пеполува осе колпало) пибино: н:я пелолу ла еп колнало биВЬяум:Я пепосуРракВанnand*-*conference:monitor:count" "menoryßeforeCoenandinMb*:69.8.*nenoryPeakBeforeConnandInMb" -sole commands (Connand::run Hemory usage before starting coerence:cont ton:count comsand for actavires in 02826-85-1211221341834correlattion.d":"e%y*ci87-0d93-4030-9[PHONE]6848traced"e"dmonitor:count] No activities found in (2026-85-27 12:34:80, 2026-85-27 12:36:001"cornellatsionid*"e8yfci8f-c093-4030-9654-201433843-8Trace 100758685-98[2826-85-27 12:36:11] Local.INF0: Jininny\Console\Comnands\Connand::run Memory usage for connand ("command": "conference:monitor:count", "nenoryBeforeCommandInMb":60.0, "nemoryAfterConnandInMB":62.0, "memoryPeakB12826-85-2412336112 0c910205iminny consolel coscands.connind::run Hemory usage before starting comJininny Console Comnands Connand::run Hemony usage for connand "command*:"crn:sync-hubspot-objects", "nenonyBeforeCommandinHb":68.0.nenonyAfterCommandInNB":62.8, "пелогуРеакв[SyncHubspotübnects, Starting sync "team":"abae7408-bfa8-4383-987f-89f4bf2bdbbage":24188576, "real_usage":65811/12, "pid":42218} 1 correlation_1d":"79fca9e9-5a21-452c-9cSaewecoun:Camnearaschsinetoken"eoc.alecountid8..100 lorovscanwxththenohComalanonyore.ono-saye-oeiroheininoei ConchRneloeescotnofonh2826-85-21 12:36:12) local.INFO:(2826-85-27 12:36:13] local.INFO;2A24-A0.27 12.24-121 Toonl YMSA[SocialAccountService) Token retrieved {"socialAccountld":1499, "provider":"hubspoteeanmaloniyoreono.wenye-oetrohethinoatt Conee neloreiscotnoren[Encnypted okenManagen Generating access token. '"node":"Legacy") "connelation_2d*:*79fca9e9-5821-452c-9c88-6c8b158a9e0f", "trace-20*: 84bc4955-18Sc-409f-8849-1469983354dc")[ConOunerResolven) Integration owner matched as CRM Ouner "crm_provider":"hubspot". "crn-owner":148, "tean-ad":2) "correlation-id*:*79fca9c9-5a21-452с-9c88-6c8b158a9e8f","tra[HubSpot Syncing opportunities using strategy: lasthodified "team":2 "connelation-id*:"79fca9e9-5a21-452с-9с88-6c8b158a9c0t" "trace-20*:*84bc4955-18Sc-409f-8849-146998335[Hubspot) Pagination completed {"tean_id":2, "endpoint":"[URL_WITH_CREDENTIALS] "trace id[onOunenResol venl No tean menber found with actsive con connection f"con nnoviden"-"hubspot" "team Sid".LP) "concelationid"-"4fe53080-5986-4226-8369-0963ef6eßec3" "toace id[SwncHubspotOhiectsiSvne_Ginished_("team"-"62049a54-0645-4637-a7ap«a860fcebeße6* Monoyiden"-"hubspot" "status"-"disconnected" "dunation ns":23,62, "usage":24934488"ceal usao(2826-85-27 12:36:131 1ocal, TNF0(2826-85-27 12:36:131 1oca1, INF0(2826-85-27 12:36:131 10ca1, WARNTNG: [HubSpotil Account not connected for usen ("usenid": 33e34a7a-1c02-4404-87ac-22c3a385e6e3"(2826-85-27 12:36-131 10ca1, TNF0[Con0unerResolverl intecratzion ouner sis not connected, attenotsing tean renbens *con orovide(2826-85-27 12:36:131 10091, TNE0(2826-85-27 12-36-131 10091, TNE0(2826-85-27 12-36-131 10091,TNE0(2826-85-27 12-36-141 10091,TNE0(2826-85-27 12-36-141 10091 7NEO,uVnerKesoweremeoens tounwrnacolvechconner..w[CcnOnnerResolvenl No teanenber found with active con connectzion ("eon prowiden*.*hus[SvncHubspotObfectsl Svnc finished ("tean"."52b115eb-93ce-4d1b-929c-1737574f8fba* onowidenJininny\Console\Comnands\Connand: :run Memory usage before starting command {*coAiminny consolel conandsl connand:run Memony ugage fon connand "conmand"t"actaiyyanotfy-nore[2826-85-27 12:36:14) Local.INFO,12826-85-24 12:36341 000,WAONNGHubSoorAccount nox connected fon usen"usentd.tnecancs-fhod-47c5-123.0520857m00037(2826-05-27 12-36-141 1ocA1,TMEO,1g":29} (concelatsion 1g"."34830300-4361-48ce-9866-8161516e75e2" "trace 3d"status"*"dsconnected" "duration nsuaBlrz "usaoe":24257692, "regl usaenot-logded" "enoryßeforeConnandinyb*:69.8,"nenonyPeakBeforeConnandInMb."nenonyBeforetommandinto":o8,8,onenony.tentoncandiini8":o.8.wnenory?ege":65011712. "0d":42218} (*concelatsion $d"-=468d0s4b-0205-43c8-84ot" "cen onnen":256 ecan $d":491 ("coccelation 5a"--468d054b-8205-43c8-812826-85-24 17:3611406010505Noteam nenbene found with nctaive con connecttion "can onouniden"."12826-85-27 17:3614110601N505Denhoeooet iklocnMstk[SyncHubspotübiects Sync finished "team":"c6b9d6b8-b48d-4832-a68c-a57d68651888* provider":"hubspot" "status":"disconnected", "duration-ns":49.63, "usage":24238936,"real usacmenkoeooet .htllosmsJininny Console \Commands \Connand::run Memory usage before starting command *comenkoetrer icketl loanlmsheWSEI EOIOM PO BEH FN EWooeoS N SS...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78589
|
2757
|
38
|
2026-05-27T12:44:09.679724+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885849679_m1.jpg...
|
PhpStorm
|
PhpStorm and Plugin Updates
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?
Not Now
Restart...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"PhpStorm and Plugin Updates","depth":1,"on_screen":true,"value":"PhpStorm and Plugin Updates","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Restart PhpStorm to apply changes in plugins?","depth":1,"on_screen":true,"help_text":"text/html","role_description":"text"},{"role":"AXButton","text":"Not Now","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Restart","depth":1,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false}]...
|
9014400724232350219
|
6853165463305800004
|
click
|
accessibility
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?
Not Now
Restart...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78588
|
2758
|
39
|
2026-05-27T12:44:08.029682+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885848029_m2.jpg...
|
PhpStorm
|
PhpStorm and Plugin Updates
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?
Not Now
Restart...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"PhpStorm and Plugin Updates","depth":1,"bounds":{"left":0.45844415,"top":0.28092578,"width":0.09740692,"height":0.014365523},"on_screen":true,"value":"PhpStorm and Plugin Updates","help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"bounds":{"left":0.45844415,"top":0.28092578,"width":0.0674867,"height":0.014365523},"on_screen":true,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"text/html","depth":2,"on_screen":false,"help_text":"text/html","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Restart PhpStorm to apply changes in plugins?","depth":1,"bounds":{"left":0.45844415,"top":0.30167598,"width":0.09740692,"height":0.013567438},"on_screen":true,"help_text":"text/html","role_description":"text"},{"role":"AXButton","text":"Not Now","depth":1,"bounds":{"left":0.4900266,"top":0.33040702,"width":0.032579787,"height":0.027134877},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Restart","depth":1,"bounds":{"left":0.5265958,"top":0.33040702,"width":0.02925532,"height":0.027134877},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
9014400724232350219
|
6853165463305800004
|
visual_change
|
accessibility
|
NULL
|
PhpStorm and Plugin Updates
text/html
text/html
te PhpStorm and Plugin Updates
text/html
text/html
text/html
Restart PhpStorm to apply changes in plugins?
Not Now
Restart...
|
78587
|
NULL
|
NULL
|
NULL
|
|
78587
|
2758
|
38
|
2026-05-27T12:44:05.431146+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885845431_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
2292313958774981763
|
7734018811113132712
|
click
|
hybrid
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
PhpStormViewNeWENNCCoocCarevelKetdcioTOOl-WindowPwovscors$2 JY-20915-fix-npho l0005.ongpheo matl.criyPmaxio.ong"medd"sueamine.oneHwowercalonephp queue.phpsdlestorce.onesamconephp secure-headers.phgwpservices.ongppslack.ohephptimezones.ohgphp webhook-server.oho> En contrit.→darabasrontcent>Ulangnode modtles hhrary toon→tnanstant mualiid> @ resourcesv hroutesphe api.phpphe api_v2.phpne concole nbophe customer_api.phpMoamsioo0o.oneMo haalth obomuoro celcoweo.onMaweb cnopp weonook.one> scriptev(ln storage> O apo>@ debugbar> &a frameworkvMloasrcitionore0 audio wav= custom logOtexkehysece.ohpusonce wihny servcostwi16©UANUNNNN= nubspocioumal-poullodcamnit xmEoautheorivate kelЛАЛААAЛAAAAHSWed 27 May 15:44:05Settingsphpljiminny.phppublic function -_constructeScredentals = storage oathd pathetexterellay1sonlonoutenv assianment: 'GOOGLE_APPLICATION_CREDENTIALS=' • Scredentials):* Sareh the nnteet soceacas cinca the nner cuoemuhise funet son evne tt hanasSmailbox = config( key. "jiminny.google_text_user'):SexpectedAlias = config( key: "jiminny,deploy_region') === 'eu' ? 'catch-all-eu' : 'catch-all'SexpectedHost = config( key: "jiminny.google-text_host')Log:: info( message: "[TextRelayService) Starting sync', 0"nazloox > Swarloox'expected alias' =› SexpectedAlias.PXOPCIPONOSE L SOXOPCKPCHOST1):seruces ensosreservetalookssaoehstoryansosoertstoresenmressaoeoseiforeachSnessaneksstony as ShistontesSnessages = Shistonies-snessagesAdded 22 11:custom.lo2826-85-27 12:36:032024-05.27 12-3K-ARIdeolog›Apocarance & Bchavio.Search Results (212826-85-27 12:36:03КеуmaрEdrton151144158728kmemoryBeforeCommandInMb":60.0,"memoryPeakBeforeConnandInMb" :1ed1bc6", "trace_id":96d8832a-1985-4983-beSc-e9485c095aef"}CommandInMb":68.0.*nenoryAfterComsandInMB":62.8."menoryPeake."memoryBeforeCommandInMb":69.0.*memoryPeakBeforeConmandInMb4820-05-4450.05%12826-85-27 12:36:05112826-85-27 12:36:061(2826-85-27 12:36:061VoinsOverviey› Version Controleeihohoo.oadoraroorino nhoroc.orarnoryredfabe28496d8"}DPY84Yo08Directories820-8594WD0100%Build, Execution. DeoloumentInteractive viewer for '.log' files.."memoryßeforeComnandinMb":69.0. *memonyPeakBeforeConnandTnMb8ZO-0504WDOH0812826-85-27 12:36:091nolousd meworreoa ooHosroraruoareorinohhoroyonneaoryredloryßeforeCommandinMb*:69.8.*nenoryPeakBeforeConnandinMb":99.> ToolsFeatures7826-85-242736:8902826-85-27 12:36:091Backup and Synco4arTrace10:[CREDIT_CARD]-9868-8008da25y/c8a"e-643d-fe17976647af° "trace_1d".*13844bdf-1d76-4e15-9868-ebb•Code hich ching bascd or log level: error, warn, into etc2826-85-272:36789Advanced SettnasIntention to highlicht columns (time, category, threads02826-85-27 12-36-111mandinho":o8.8, nenory.Ftertonandiinis":o2.8nenory?eakberomenoryßeforevocnandiinio :o8,8,cenoryPeakBeforeconnandinho"e2826-85-272336452826-85-272336450stack trames) in lod tie edror• Folding of uninteresting event:woerinkoshethcos.inmlond"."e8yci:+-cd93-4030-9[PHONE]878Traceom"d87Fc18+-c093-4030-9054-267-3384948Trace10110758685-882826-85-272330450comendiinto":o8,8,menonytertos-andiint8":o.8."nenory?egkeamication to couroo code harem od evenisllFar2826-85-27233642co tonewertoraoonshit45•Sytemds se aeonNemancTnt,"oi NCRAROny ANoSSAOCln.RiyR"SASONyPAskR•ntentoaton oh chtd crance netweon evenis imarke811/12, "pid":42218} 1 correlation_1d":79fca9e9-5a21-452c-9cyyc-oeiioheininoei Coneh nneloseRocotnoronhtme as redi• Advanced error stripe (heat map• Custom log format more info: [URL_WITH_CREDENTIALS] "trace idIConOumenResolwenl No tean menber found with actrve con connectsion f"con nnoviden"-"hubspot" "team id".LP) "concelation.d"•"4fe53080-5986-4a26-8369-0963ef6eßec3" "toace id"(2826-85-27 12:36:131 1ocal, INFOfSyncHubspot@hiectsSyne_finished_(*team"-"b2d49a54-0645-4637-a7ap«a860fce6eße6* Monoyiden"-"hubspot" "status"-"disconnected" "ducatsion ns":23,62,"usane":22934488"ceal usao(2826-85-27 12:36:131 1oca1,TNF0:fSyncHubspot@biectsStantino_sync_("team"-*b26115eb-93ce-401b-929c-1737570f86ba* Musane":24195248, "neal usage":65011712,"01d"-40210) (concelation0*:3483930b-4961-4800-98(2826-85-27 12:36:131 100a1, WARNTNG: [HubSpotil Account not connected forCUSST:T MES BIETST:TN1004 55T-61T:YE:D CREУ CLIUVE: УE:T-DУ 1441-50857-200-46 ЗВ:Т М ФН ВТ ТVАВТИОВ БТЕПТТЧНБТ•БНЕНСИТТАЕДСТБВРООМАТЬ(2826-85-27 12:36:131 1oca1,TNF0:Com@umenResolvenlTntennatzion_onmenis.not_connected.attenotsinoteam.membens_con.onoy/den"-"hubspot" "con onmen":109, "team 31d8:29) *concelatsion10*-*348303db-4a61-48ce-9)(2826-85-27 12:36:131 10091, TNE0nenbers found with active con connectiion ("eon prowiden":"hubspot" "team ig":29} ("concelatiion 1g"."34830300-4361-48c0-9866-8161516e75e2" "trace 3d(2826-85-27 12-36-131 10091, TNE0nenber found with active con connectiion ("eon prowiden*,"hubspot" "tean ig":29} ("concelatsion 1g"."34830300-4361-48c6-9866-8161516e75e2" "trace 3d(2826-85-27 12-36-131 10c91, TNE0,(2826-85-27 12-36-141 10091,TNE0:—326-85-21 12:36:42oc910a0n(2826-85-27 12-36-141 1oca1, TMEO,Jininny\Console\Comnands\Connand::run Memory usage before starting command {"connand":"activity:notify-not-logged", "memoryBeforeComnandInMb* :60.0, "menoryPeakBeforeConnandInMbhẢẢẢẢẢẢSunchubsoortosectel Stantina sun• {atean"- "c6b9d6b8-b48d-4832-368c-157469651888- "uss0e":24214824 "neal. usaae":65911712 "o4d":42219} (*coccelatzion $d".-468d054b-8205-43c8-842826-85-24 12:3614 Loc0AWAONINGE(2826-05-27 12-36-141 1ocA1,TMEO,Integration owner is not connected, attempting team menbers {"cra_providen"; "hubspot", "crn_owner":256, "team_id":49} {"correlation_id":*468dca4b-02d5-43c8-8sthis-siesartunrentanwinonnentSsenwice.Smilbox.Sescaocid.SexocctedAsns.Sexoectectoso12826-85-24 17:3611406010505toundlwithaative.com_commecoion"counnoyidon".hubenor" "taambd".49conаnoon50".4680012008205-23080:[CREDIT_CARD] Tene4(2826-85-27 12-36:141 1ocA1, TMEO,sund with netaive con connection "ea onouiiden."hubsoot"ccamid":49% correlation"."468dc140-8205-4308-84d6-1661SStb48" "toacesdDenhoeooet iklocnMstkmenkoeooet .htllosmsCnalnvortout Tovtoolaueerhorolt cotaer oest nnauidon Cnoccanoldtenetmenkoetrer icketl loanlmshe[SyncHubspotübiects Sync finished "team":"c6b9d6b8-b48d-4832-a68c-a57d68651888* provider":"hubspot" "status":"disconnected", "duration-ns":49.63, "usage":24238936,"real usacJiminny\Console|Comnands\Connand::run Memory usage before starting command {"connand": "mailbox:sync", "menoryBeforeCommandInMb":60.0, *nenoryPeakBeforeComnandInMb*:99.883} {"cо)Mnsn Cahsdmla ChotNhnhay SundMsmilSchadnalSTNTGUSATohoxGwoc/whoct"-ldoakorhann_=towentele0lEecaccotation_ian."auualko-a/kaktasHhons-9009411a64a6ashoncctae.noth0hdo2ednht.abbzbaae0sh09d98fc1...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78586
|
2757
|
37
|
2026-05-27T12:44:05.330268+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885845330_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"}]...
|
-4577791165138735605
|
-46498408178560082
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin...
|
78584
|
NULL
|
NULL
|
NULL
|
|
78585
|
2758
|
37
|
2026-05-27T12:43:59.055255+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885839055_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.031914894,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.07446808,"height":0.0},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"33M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.69","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Alibaba Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dart","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008976064,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.6M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.62","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Google","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains IDE Services","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046875,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.62","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Docker","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.299","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8743282456803237078
|
-5257809936844299979
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed...
|
78583
|
NULL
|
NULL
|
NULL
|
|
78584
|
2757
|
36
|
2026-05-27T12:43:58.546120+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885838546_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled
24.6M
3.66
261.22158.283
JetBrains s.r.o.
Top Rated
Show all
Gerry Themes Pro
Paid
Install
Enabled
528.6K
4.95
Gerry Themes
LSP4IJ
Install
Enabled
794.4K
4.95
Red Hat...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.047222223,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.019444445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06666667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.15555556,"height":0.018888889},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"33M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.69","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Alibaba Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dart","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.01875,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.6M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Google","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains IDE Services","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09791667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Docker","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.299","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24.6M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.66","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.283","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Rated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.044444446,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Gerry Themes Pro","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Paid","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027083334,"height":0.017777778},"on_screen":false,"help_text":"Activate the plugin license after installation or use the 30-day trial.","role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"528.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.95","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gerry Themes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LSP4IJ","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"794.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.95","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Red Hat","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"}]...
|
-4671055218036000887
|
-641611522561252939
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled
24.6M
3.66
261.22158.283
JetBrains s.r.o.
Top Rated
Show all
Gerry Themes Pro
Paid
Install
Enabled
528.6K
4.95
Gerry Themes
LSP4IJ
Install
Enabled
794.4K
4.95
Red Hat...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78583
|
2758
|
36
|
2026-05-27T12:43:57.954235+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885837954_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-5148061103501592250
|
-605591586060869452
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78582
|
2757
|
35
|
2026-05-27T12:43:57.658488+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885837658_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled
24.6M
3.66
261.22158.283
JetBrains s.r.o....
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.047222223,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.019444445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06666667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.15555556,"height":0.018888889},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"33M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.69","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Alibaba Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dart","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.01875,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.6M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Google","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains IDE Services","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09791667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Docker","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.299","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24.6M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.66","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.283","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"}]...
|
-7145776735085048959
|
-5257809936843259595
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled
24.6M
3.66
261.22158.283
JetBrains s.r.o....
|
78581
|
NULL
|
NULL
|
NULL
|
|
78581
|
2757
|
34
|
2026-05-27T12:43:56.849672+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885836849_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"}]...
|
-3176794491825368568
|
-677649180098797388
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78580
|
2758
|
35
|
2026-05-27T12:43:56.747956+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885836747_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.031914894,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.07446808,"height":0.0},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
4613740683377031432
|
-641620318655323979
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29...
|
78579
|
NULL
|
NULL
|
NULL
|
|
78579
|
2758
|
34
|
2026-05-27T12:43:54.015012+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885834015_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o....
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.031914894,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.07446808,"height":0.0},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
-6681245148552640601
|
-646115122189639244
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o....
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78578
|
2757
|
33
|
2026-05-27T12:43:53.914106+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885833914_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.047222223,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.019444445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"}]...
|
2965767410750394226
|
-605591586060869452
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04...
|
78576
|
NULL
|
NULL
|
NULL
|
|
78577
|
2758
|
33
|
2026-05-27T12:43:47.800187+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885827800_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
-1114150779867075893
|
-605591586060869452
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX...
|
78574
|
NULL
|
NULL
|
NULL
|
|
78576
|
2757
|
32
|
2026-05-27T12:43:47.696314+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885827696_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.047222223,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.019444445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06666667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.15555556,"height":0.018888889},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"}]...
|
4613740683377031432
|
-641620318655323979
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78575
|
2757
|
31
|
2026-05-27T12:43:45.816634+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885825816_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
2292313958774981763
|
7734018811113132712
|
click
|
hybrid
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpDOCKER₴8111DOCKER (docker-compose)DEV (docker)₴2-zsh883ONEdocker_lamp_1• '/usr/local/bin/php' 'artisan'meeting-bot:schedule-bot > */proc/1/fd/12>&1docker_1amp_12026-05-27 12:43:04 Running ['artisan'dialers:monitor-activities] . 1s DONEdocker_lamp_1, '/usr/local/bin/php' 'artisan' dialers:monitor-activities > */proc/1/fd/1'2>&1docker_lamp_12026-05-27 12:43:05 Running ['artisan'jiminny:monitor-social-accounts]1s DONEdocker_lamp_11 '/usr/local/bin/php' 'artisan' jiminny:monitor-social-accounts > '/proc/1/fd/1' 2>&1docker_lamp_12026-05-27 12:43:07 Running ['artisan'mailbox:skip-lists:refresh]. ls DONEdocker_1amp_1• '/usr/local/bin/php' 'artisan' mailbox:skip-lists:refresh > '/proc/1/fd/1' 2>81docker_lamp_12026-05-27 12:43:08 Running ['artisan'mailbox:batch:process --max-batches=15]1S DONEdocker_lamp_1l '/usr/local/bin/php' 'artisan' mailbox:batch:process --max-batches=15 ›'/proc/1/fd/1' 2>&1docker_lamp_12026-05-27 12:43:10 Running ['artisan'mailbox:batch:retry-failed --max-batches=15] in background2.83ms DONEdocker_lamp_1• ('/usr/local/bin/php' 'artisan'mailbox:batch:retry-failed--max-batches=15 › '/proc/1/fd/1' 2>&1 ; '/usr/local/bin/php'schedule: finish "framework/schedule-390defd641effba0f73a895e426ded4cf2ba7f11" "$?") >'/dev/null' 2>&1 &docker_lamp_12026-05-27 12:43:10 Running ['artisan' calendar:sync --dateMode=daily]2026-05-27 12:43:19 Jiminny\Jobs\Calendar\SyncCalendarEventsdocker_lamp_12026-05-27 12:43:20 Jiminny\Jobs\Calendar\SyncCalendarEventsdocker_lamp_1 |INGdocker_lamp_1docker_lamp_11/fd/1' 2>&1docker_1amp_1docker_lamp_1ONEdocker_1amp_1INGdocker_lamp_1docker_lamp_1ONE2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEventsRUNN12s• '/usr/local/bin/php' 'artisan'calendar:sync --dateMode=daily > '/proc/2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEvents . 378.18ms D2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEventsRUNNrun_artisan_schedule: Done waiting for schedule:run2026-05-27 12:43:22 Jiminny\Jobs\Calendar\SyncCalendarEvents..69.77ms D‹$0100% <78• Wed 27 May 15:43:45DOCKER (docker-compose)181screenpipe"84T2-zsh85...ip-10-30-129-190:~ (nc)886...-10-30-140-255:~ (-zsh)$7PROD (ssh)S[URL_WITH_CREDENTIALS] 13EU (-zsh)*** System restart required ***Last login: Tue May 26 06:32:33 2026 from 212.5.153.87lukas@jiminny-eu-bastion:~$ client_loop: send disconnect: Broken pipe@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [|T4STAGE (ssh)Run'do-release-upgrade' to upgrade to it.*** System restart required ***Last login: Mon May 18 06:46:53 2026 from 212.5.153.87tion:~$ |T5QA (-zsh)PRODSTAGEt6FE (-zsh)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ lFRONTENDX 17EXT (-zsh)Lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ [|EXTENSIONView in Docker Desktop• View ConfigL View Logsw Enable Watchd Detach...
|
78573
|
NULL
|
NULL
|
NULL
|
|
78574
|
2758
|
32
|
2026-05-27T12:43:45.711934+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885825711_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-4302873599836194171
|
7160412185496417199
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78573
|
2757
|
30
|
2026-05-27T12:43:45.173328+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885825173_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.021527778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06527778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.072916664,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013888889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.047222223,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.023611112,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.019444445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06666667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.15555556,"height":0.018888889},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"33M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.69","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Alibaba Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dart","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.01875,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.6M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Google","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains IDE Services","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09791667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.62","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Docker","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"26.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.299","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
748411699690894166
|
-646123918282694347
|
visual_change
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M
3.62
Google
JetBrains IDE Services
Install
Enabled
27.4M
4.62
JetBrains s.r.o.
Docker
Installed
Enabled
26.4M
3.55
261.22158.299
JetBrains s.r.o.
GitHub
Installed
Enabled...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78572
|
2758
|
31
|
2026-05-27T12:43:44.696752+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885824696_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o....
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.031914894,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
-5242602953618469324
|
-29130765040066380
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o....
|
78570
|
NULL
|
NULL
|
NULL
|
|
78571
|
2757
|
29
|
2026-05-27T12:43:44.595219+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885824595_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8164254104259901190
|
-632613115241920075
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled...
|
78569
|
NULL
|
NULL
|
NULL
|
|
78570
|
2758
|
30
|
2026-05-27T12:43:41.554845+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885821554_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"markbakosss","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.022606382,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX Customer Service Deploy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"FLUX Customer Service Deploy","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"624","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FLUX","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.00930851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hexana","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7.1K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.04","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Top Downloads","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.031914894,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub Copilot - Your AI Pair Programmer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.07446808,"height":0.0},"on_screen":false,"help_text":"GitHub Copilot - Your AI Pair Programmer","role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"45.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.29","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1.7.1-243","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GitHub","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kotlin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"37M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.16","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Subversion","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"35.1M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.93","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"261.22158.354","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"33M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.69","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Alibaba Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dart","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008976064,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"27.6M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
-5994815880840731430
|
-646115122189672012
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05
markbakosss
FLUX Customer Service Deploy
Install
Enabled
624
FLUX
Hexana
Install
Enabled
7.1K
4.04
JetBrains s.r.o.
Top Downloads
Show all
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
GitHub Copilot - Your AI Pair Programmer
Installed
Enabled
45.7M
2.29
1.7.1-243
GitHub
Kotlin
Install
Enabled
37M
4.16
JetBrains s.r.o.
Subversion
Installed
Enabled
35.1M
2.93
261.22158.354
JetBrains s.r.o.
Qoder CN (Formerly Lingma) - Alibaba Cloud AI Coding Assistant
Install
Enabled
33M
2.69
Alibaba Cloud
Dart
Install
Enabled
27.6M...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78569
|
2757
|
28
|
2026-05-27T12:43:41.043624+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885821043_m1.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install...
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Search","depth":1,"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.0,"top":0.0,"width":0.23472223,"height":0.037777778},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.050694443,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.017777778},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.033333335,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045833334,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05277778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04375,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09583333,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.034722224,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.024305556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.068055555,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.028472222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07361111,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.028888889},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.027777778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.020833334,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.06388889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03263889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05347222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07847222,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.049305554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.079166666,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.031944446,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.11597222,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.12638889,"height":0.018888889},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02638889,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07569444,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03125,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.061805554,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.07777778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.03888889,"height":0.018888889},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.035416666,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025694445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.045138888,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.030555556,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.025,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.05,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.013194445,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.04027778,"height":0.015555556},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.09652778,"height":0.018888889},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.054166667,"height":0.037777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
2734856352762423092
|
-641620314500855371
|
click
|
accessibility
|
NULL
|
Search
Search plugins
Suggested
Kubernetes
Cloud
I Search
Search plugins
Suggested
Kubernetes
Cloud
Install
Enabled
JetBrains
Staff Picks
Show all
Laravel Idea
Installed
Enabled
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
78568
|
2758
|
29
|
2026-05-27T12:43:40.477961+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-27/1779 /Users/lukas/.screenpipe/data/data/2026-05-27/1779885820477_m2.jpg...
|
PhpStorm
|
Settings
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PHP
Appearance & Behavior
Keymap
Editor
Plugin PHP
Appearance & Behavior
Keymap
Editor
Plugins
Version Control
Directories
Build, Execution, Deployment
Languages & Frameworks
Tools
[SEED_PHRASE]
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"PHP","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Appearance & Behavior","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Keymap","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Version Control","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Directories","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Build, Execution, Deployment","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Languages & Frameworks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Tools","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Backup and Sync","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Advanced Settings","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06216755,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXTextField","text":"Search","depth":1,"bounds":{"left":0.50166225,"top":0.04868316,"width":0.0731383,"height":0.027134877},"on_screen":true,"help_text":"⌘F","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Search plugins","depth":1,"bounds":{"left":0.27027926,"top":1.0,"width":0.11236702,"height":0.0},"on_screen":false,"help_text":"Type / to see options","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Suggested","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kubernetes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.024268618,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXLink","text":"Cloud","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"JetBrains","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015957447,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Staff Picks","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021941489,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025265958,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.71","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"13.1.2.261","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Laravel Idea","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.020944148,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.045877658,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"151.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"2.15","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011635638,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Symfony Plugin","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.032579787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013630319,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.64","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PHP Annotations","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03523936,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Installed","depth":4,"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.013297873,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.80","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"12.1.0","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.009973404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Daniel Espendiller","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.030585106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"IdeaVim","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"20.9M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015625,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.47","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"JetBrains s.r.o.","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Rainbow Brackets","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03756649,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"24M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.58","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Zhihao Zhang","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023603724,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Material Theme UI","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.037898935,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"18.4M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.015292553,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"3.94","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Atom Material Themes & Plugins","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.055518616,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Php Inspections (EA Extended)","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"Php Inspections (EA Extended)","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1.7M","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.89","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"EA Inspections Team","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.036236703,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cloud (IaC) Security","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"40.2K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.014960106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.78","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dmitrii Protsenko","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.029587766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"New and Updated","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03723404,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Show all","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01861702,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Cucumber +","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"457.4K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.016954787,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.55","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012300532,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Maxime HAMM","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Hex Editor","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.021609042,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"22.6K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01462766,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.41","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"meanmail.dev","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.023936171,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0063164895,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeAgent","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.019281914,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodeGPT AI Assistant","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.046210106,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"11K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.010305851,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.39","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CodePilot","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.01662234,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Metal Analyzer","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.03125,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"228","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"eugenebokhan","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025598405,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FastORM Builder","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.034906916,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"7","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.0066489363,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gianpy","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011968086,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"NextTask TODO Task Manager","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.06050532,"height":0.0},"on_screen":false,"help_text":"NextTask TODO Task Manager","role_description":"text"},{"role":"AXButton","text":"Install","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.025930852,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Enabled","depth":4,"on_screen":false,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"57K","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.011303191,"height":0.0},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"4.05","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.012632979,"height":0.0},"on_screen":false,"role_description":"text"}]...
|
3298247281162398209
|
-5289335232885931852
|
click
|
accessibility
|
NULL
|
PHP
Appearance & Behavior
Keymap
Editor
Plugin PHP
Appearance & Behavior
Keymap
Editor
Plugins
Version Control
Directories
Build, Execution, Deployment
Languages & Frameworks
Tools
[SEED_PHRASE]
2.9M
4.71
13.1.2.261
Laravel Idea
JetBrains AI Assistant
Install
Enabled
151.9M
2.15
JetBrains s.r.o.
Symfony Plugin
Install
Enabled
8.4M
4.64
Daniel Espendiller
PHP Annotations
Installed
Enabled
5.7M
4.80
12.1.0
Daniel Espendiller
IdeaVim
Install
Enabled
20.9M
4.47
JetBrains s.r.o.
Rainbow Brackets
Install
Enabled
24M
4.58
Zhihao Zhang
Material Theme UI
Install
Enabled
18.4M
3.94
Atom Material Themes & Plugins
Php Inspections (EA Extended)
Install
Enabled
1.7M
4.89
EA Inspections Team
Cloud (IaC) Security
Install
Enabled
40.2K
4.78
Dmitrii Protsenko
New and Updated
Show all
Cucumber +
Install
Enabled
457.4K
4.55
Maxime HAMM
Hex Editor
Install
Enabled
22.6K
4.41
meanmail.dev
CodeAgent
Install
Enabled
1
CodeAgent
CodeGPT AI Assistant
Install
Enabled
11K
4.39
CodePilot
Metal Analyzer
Install
Enabled
228
eugenebokhan
FastORM Builder
Install
Enabled
7
Gianpy
NextTask TODO Task Manager
Install
Enabled
57K
4.05...
|
78566
|
NULL
|
NULL
|
NULL
|